sql資料庫一道試題幫忙做做, SQL 資料庫,一道題

2021-04-12 21:19:45 字數 2373 閱讀 4817

1樓:匿名使用者

資料庫的專業英語吧,看看我答的data 資料 database 資料庫 rdbms 關係型資料庫管理系統(relational database management system) grant 授權 revoke 許可權**內 deny 拒絕 declare 宣告 procedure程式 transaction 轉換容 trigger 觸發器 continue 連續 unqiue 唯一 primary key 主鍵 identity 標識 foreign key 外來鍵

【sql】資料庫,一道題

2樓:匿名使用者

1create table 學生 (學號 char(9) not null primary key,

姓名 varchar(20) not null,

性別 char(2) check (性別='男' or 性別='女'),

年齡 int,

專業 varchar(20))

2update 課程 set 課程名='sql資料庫' where 課程號='100003'

3delete from 課程 where 課程號='100002'

4create table 選課

( id int identify(1,1),

學號 char(9),

課程號 char(6),

分數 int,

foreign key(學號) references 學生(學號),

foreign key(課程號) references 課程(課程號))

5insert into 課程 select '100001','c語言',2

union all

select '100002','資料結構',2

union all

select '100003','資料庫原理',2

6create view v_選課 as

select 學生.學號,學生.姓名,課程.課程號,課程.課程名,課程.學分,選課.分數

from 學生,課程,選課

where 學生.學號=選課.學號

and 課程.課程號=選課.課程號

7select 姓名,學號,專業 from 學生 where 姓名 like '張%' and 性別='女'

8select 學號,姓名 from 學生 where 學號 in (select 學號 from 成績 where 分數<60)

3樓:水色浮雲

1.create table student (id int not null,

name nvarchar(10) not null,gender int null,

age int null,

major nvarchar(50) not null,constraint [pk_student] primary key clustered

([id] asc))

goalter table student with check add constraint [ck_gender] check (([gender]>=(0)))

go2.

update 課程表

set 課程名 = 'sql資料庫'

where 課程號 = 100003

3.delete 課程表

where 課程號 = 100002

唉~不想寫了,都是基本操作,樓主看著給分吧~

4樓:匿名使用者

這都是資料庫的基本操作,建議你還是看看書吧,或者f1看看幫助也可以。

5樓:匿名使用者

看了下,全是基礎唉,而且問題沒獎勵~

1、create table 學生資訊

(學號 varchar(14) identity(1,1) primary key,

姓名 varchar(8) not null,

性別 varchar(2) check(性別in ('男』','女』)),

年齡 int null,

專業 varchar(20) not null

)2、 update 學生資訊 set 課程名 = 『sql資料庫』 where 課程號 = 『100003』

3、 delete from 課程資訊 where 課程號 = 『100002』

我幫你寫前3個,不給分也就算了~ 只好算我倒黴~

badkano還真把答案寫好了唉,就那麼喜歡送答案啊~ 不會去鍛鍊新手的~ 誤人子弟~

oracle資料庫刪除表中一條資料sql語句

sql delete from 資料庫.表名 where id 1 講解 如果不用跨庫,可以省略 資料庫 1代表唯一的一條記錄,是引數。delete from 表名 where 條件 mit 提交 保留表,只刪除資料 truncate table mytable 或者 delete from myt...

資料庫誰能幫我講講這一道題啊萬分感謝

按要求先建立幾張表 系表,學生表,班級表,社團表 er圖可以根據參考網上的樣式畫出來 依賴關係 需要拿一張表,每關聯一張表就寫入到最小依賴集中。求個access資料庫大神幫我做些判斷題,萬分感謝 1t2t 3f4f 5f6f 7f8f 9t10f 11t12f 13f14f 15f16f 17f18...

如何修改資料庫表中一列值,怎樣將sql資料庫中同一表中的一列資料更改為另外一列的資料

通過update方法實現。sql update table tablename t set filename 值1 where t.name 條件 解釋 更改某列,說明有條件,所有必須通過專 where 條件語句屬定位到列。定位成功後,通過set方法給固定欄位賦值即可。上面sql語句的意思 更改ta...