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

時間 2021-12-23 10:25:28

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資料庫修復軟體

月鋣 是哪種損壞?資料還是配置?是你不小心delete資料了想要還原。還是直接備份的庫無法附加?像你這種問題沒有修復軟體可用的。你用的是不是sql server2000?沒打補丁的那種?你打到sp4,最起碼也得是sp3。再試試。如果不是這個原因的話,那沒有任何辦法。原因是刪除後的檔案本身恢復的可能就...

sql資料庫使用者驗證語句,SQL資料庫使用者驗證語句

sql語句 select from tablename where userid userid and userpwd userpass 要不寫在儲存過程裡 set ansi nulls on set quoted identifier on goalter procedure dbo loginp...

SQL資料庫高手請進,SQL資料庫高手請進

使用學號分組,統計通過和不通過的數量即可 不用管什麼成績了 比如某學號有7門課程,通過3門 不通過4門,那麼就可以知道通過率了 select a,case b when 通過 then 1 else 0 as 通過科目數 count a as 總科目數 case b when 通過 then 1 e...