sql資料庫題求大神幫忙,sql資料庫題求大神幫忙

2021-12-23 10:18:14 字數 2509 閱讀 4106

1樓:匿名使用者

if object_id(n'member')is not null drop table membercreate table member( mid char(10) not null primary key, mname char(50) not null)goexec sp_addextendedproperty n'ms_description', n'學生表', 'schema', n'dbo', 'table', n'member', null,nullexec sp_addextendedproperty n'ms_description', n'學生號', 'schema', n'dbo', 'table', n'member', 'column', n'mid'exec sp_addextendedproperty n'ms_description', n'姓名', 'schema', n'dbo', 'table', n'member', 'column', n'mname'if object_id(n'course')is not null drop table coursecreate table course( fid char(10) not null primary key, fname char(50) not null)goexec sp_addextendedproperty n'ms_description', n'課程表', 'schema', n'dbo', 'table', n'course', null,nullexec sp_addextendedproperty n'ms_description', n'課程號', 'schema', n'dbo', 'table', n'course', 'column', n'fid'exec sp_addextendedproperty n'ms_description', n'課程名', 'schema', n'dbo', 'table', n'course', 'column', n'fname'if object_id(n'score')is not null drop table scorecreate table score( sid int identity(1,1)not null primary key, fid char(10) not null foreign key references dbo.course(fid), mid char(10) not null foreign key references dbo.member(mid), score int not null default 0)goexec sp_addextendedproperty n'ms_description', n'成績表', 'schema', n'dbo', 'table', n'score', null,nullexec sp_addextendedproperty n'ms_description', n'課程號', 'schema', n'dbo', 'table', n'score', 'column', n'fid'exec sp_addextendedproperty n'ms_description', n'學生號', 'schema', n'dbo', 'table', n'score', 'column', n'mid'exec sp_addextendedproperty n'ms_description', n'成績', 'schema', n'dbo', 'table', n'score', 'column', n'score'goselect c.

fname,m.mname,s.scorefrom score s inner join dbo.

course c on c.fid = s.fidinner join dbo.

member m on m.mid = s.midwhere c.

fname in('語文','歷史','數學','英語')order by c.fname,m.mname

資料庫sql語句題目急求大神幫忙

資料庫sql查詢語句題目,求大神幫忙~

2樓:匿名使用者

(6)select 學號,姓名 from 學生表 a,選課表 b where a.學號=b.學號

and 課程號'5 '

(7)select 學號 from 選課 where 課程號 not in ('5')

(8)select 學號 from 選課 where 課程號  in ('5','6')

(9)select 學號,姓名 from 學生表 a,選課表 b where a.學號=b.學號

and 課程號 in(select 課程號 from 課程表)

(10)select 學號,姓名 from 學生表 a,選課表 b where a.學號=b.學號

and 課程號 in(select 課程號 from 選課表 where 學號='95001')

sql資料庫題目求大神解答啊!

3樓:匿名使用者

我能說我讀書的時候,我們老師也是出了一份這樣的題目給我們寫嗎? 那時候是實打實自己寫的,現在已經全部忘記了= =,因為已經轉行做了中學計算機教師。

關於sql資料庫優化,關於SQL資料庫優化

不同的資料庫,sql語句的優化方式都不同,因為不同的資料庫執行sql語句的順序和方式都不同,你最好針對某一資料庫去研究 哎 資料庫優化是個大課題了。最常用的最應該注意的就是索引的用法和優化,然後是sql語句的優化,內容較多,你可以查檢視相關資料,良好的sql也能提高查詢效率。怎樣進行sql資料庫的優...

如何使用SQL?如何使用SQL資料庫

sql有什麼用途呀?一 sql的作用 1 sql主要用於資料庫系列的軟體的查詢 彙總 寫入 刪改等方面的操控,具體應用於資料庫程式設計或資料庫資料的維護。2 也就是說sql一般用於資料庫程式設計,以及現有資料庫錯誤排查。所以一般涉及資料庫的程式設計人員或電腦資訊化系統維護人員需要對sql 也就是對資...

c連線SQL資料庫的問題,c 連線SQL資料庫的問題

用程式連線需要開啟遠端連線 1在 sql server management studio 的物件資源管理器中,右鍵單擊伺服器,再單擊 屬性 2.在 安全性 頁上的 伺服器身份驗證 下,選擇混合驗證模式,密碼,再單擊 確定 3.在 sql server management studio 對話方塊中...