1樓:匿名使用者
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)
2樓:水色浮雲
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
唉~不想寫了,都是基本操作,樓主看著給分吧~
3樓:匿名使用者
這都是資料庫的基本操作,建議你還是看看書吧,或者f1看看幫助也可以。
4樓:匿名使用者
看了下,全是基礎唉,而且問題沒獎勵~
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還真把答案寫好了唉,就那麼喜歡送答案啊~ 不會去鍛鍊新手的~ 誤人子弟~
sql資料庫一道試題幫忙做做
5樓:匿名使用者
資料庫的專業英語吧,看看我答的data 資料 database 資料庫 rdbms 關係型資料庫管理系統(relational database management system) grant 授權 revoke 許可權**內 deny 拒絕 declare 宣告 procedure程式 transaction 轉換容 trigger 觸發器 continue 連續 unqiue 唯一 primary key 主鍵 identity 標識 foreign key 外來鍵
sql資料庫的一道題(求高手 表名和欄位名直接用拼音命名即可)
資料庫sql一道選擇題**等
6樓:破風斬
c,兩個實體2張表,多對多聯絡再建一張表
sql資料庫連線不上,SQL資料庫連線不上
sql server 無法啟動並顯示錯誤 18456 症狀sql server 服務無法啟動,同時您可能會在 windows 事件檢視器中看到以下錯誤資訊 sqlserveragent could not be started reason unable to connect to server s...
資料庫的SQL,什麼是資料庫 微軟的SQL又是什麼
public sqlconn as adodb.connection 定義一個資料庫連線sqlconn on error goto handler 發生錯誤時跳轉到 handler標籤 set sqlconn new adodb.connection 例項化sqlconn sqlconn.curso...
sql資料庫和oracle資料庫哪個好
兄弟,聽我的。肯定學習oracle。原因 1 oracle是商用的最廣泛的關係型資料庫管理系統,廣泛應用於銀行 電信 電力 社保等各個領域。特別是對於unix和linux平臺,sqlserver怎麼用啊?我想你學習,肯定為了將來應用,或者工作,你的簡歷裡面寫oracle和sqlserver完全是不一...