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

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

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語言?

從關聯式資料庫r中列出屬性a,b,以及c的平均值,其條件是屬性d等於d,並將a,b分組列出,並篩選出c的平均值大於c1.好熟悉啊,不過都還大學老師了 執行的順序是從索引開始的,也就是條件,限制句中開始的,這樣可以減少i o次數 輸入,輸出 它所顯示的結果是這樣的 顯示的有 a列資料,b列資料和c列資...

sql資料庫錯誤如何解決求大神出招

換作業系統或換sql版本 在sql sever2014中,附加資料庫出現如下錯誤?大神求解釋,該怎麼處理?許可權問題,你給.mdf和.ldf加上許可權就可以了。資料庫如果不是在2014中建立的有可能版本不相容 sql資料庫問題,求大神解答 你好的!select 姓名,部門 from 職工 where...

sql資料庫區域網共享,SQL資料庫區域網共享

首先配置你的sqlserver允許遠端訪問,然後修改程式中的資料庫連線字串datasrouce 你電腦的區域網ip,就可以了 把裝了sql的那臺防火牆關掉 在另兩臺電腦用遠端訪問連線 區域網內可通過網路上的芳鄰 訪問資料庫 三臺電腦都加入同一個網,一臺電腦裝上sql2000,將外圍配置設定成可以遠端...