誰能幫我做下這道SQL語言題目,高分送上

時間 2021-11-04 14:11:13

1樓:二牛資訊

(1)使用「create table」語句建立圖書關係b

create table b

(b# char(8) primary key,

t varchar(40),

a varchar(10),

p varchar(50),

)(2)使用「create table」語句建立讀者關係r

create table r

(c# char(10) primary key,

n varchar(10),

d varchar(100)

)(3)使用「create table」語句建立借閱關係l

create table l

(primary key(b#,c#),

b# char(8) foreign key references b(b#),

c# char(10) foreign key references r(c#),

e datetime,

bz int default(0))go

(4)在b表中新增一條讀者記錄(「tp312113」「資料庫原理及應用教程」「陳志泊」「人民郵電出版社」):

insert into b values('tp312113','資料庫原理及應用教程','陳志泊','人民郵電出版社')

go(5)在r表中新增一條借閱記錄(「3555200812」「張三」「福建交通學院」)

insert into r values('3555200812','張三','福建交通學院')

go(6)在l表中新增一條借閱記錄(「3555200812」「tp312113」「2010-4-14」「0」)

insert into r values('3555200812','tp312113,'2010-4-14',default)

go(7)將書號為「b5」的圖書的出版社改為「工業出版社」

update b set p='工業出版社' where b#='b5'

go(8)將c#=「3555200812」,且b#=「tp312113」還書標記為「1」

update l set bz=1 where b#='tp312113' and c#='3555200812'

go(9)刪去還書標誌為「1」的所有借閱資訊

delete l where bz=1

2樓:為鉨dong動鈊

1.create table `b` (

`b#` char(8) not null ,

`t` varchar(40) null ,

`a` varchar(40) null ,

`p` varchar(50) null ,

primary key (`b#`) )

2.create table `r` (

`c#` char(10) not null ,

`n` varchar(10) null ,

`d` varchar(100) null ,

primary key (`c#`) )

3.create table `l` (

`b#` char(8) not null ,

`c#` char(10) not null ,

`e` datetime null ,

`bz` varchar(1) null ,

primary key (`b#`, `c#`) )

4. insert into b values ('tp312113','資料庫原理及應用教程','陳志泊','人民郵電出版社')

5.insert into r values ('3555200812', '張三','福建交通學院')

6.insert into l values ('3555200812','tp312113','2010-4-14','0')

7.update b set p = '工業出版社' where t = 'b5'

8.update l set bz = 1 where c# ='3555200812' and b#='tp312113'

9.delete from l where bz = 1

誰能幫我做下這題,用sql程式設計,急。。急。。

3樓:

create table t1(

借書證號 int primary key identity(1,1),

姓名 varchar(20) not null,

地址 varchar(50) not null

)imsert into t1 values('張三','北京市海淀區')

imsert into t1 values('李四','北京市海淀區')

imsert into t1 values('王五','北京市海淀區')

imsert into t1 values('劉六','北京市海淀區')

imsert into t1 values('趙七','北京市海淀區')

--------------------------------------

create table t2(

圖書號 int primary key identity(1,1),

書名 varchar(20) not null,

單價 number(3,3) not null

)imsert into t1 values('html','45')

imsert into t1 values('j2ee','78')

imsert into t1 values('ajax','96')

imsert into t1 values('.net','75')

imsert into t1 values('linux','38')

--------------------------------------

create table t3(

借書證號 int primary key identity(1,1),

圖書號 int(20) not null foreign key,

借閱日期 date not null

)imsert into t1 values(001,1001,'2006-12-24')

imsert into t1 values(002,1002,'2006-12-24')

imsert into t1 values(003,1003,'2006-12-24')

imsert into t1 values(004,1004,'2006-12-24')

imsert into t1 values(005,1005,'2006-12-24')

--------------------------------------

create view test as t-sql

select 借書號,姓名,書名,借閱日期 from t5

sql資料庫題目誰能給做一下

4樓:匿名使用者

if object_id(n'member')is not null drop table member

create table member

(mid char(10) not null primary key,

mname char(50) not null)go

exec sp_addextendedproperty n'ms_description', n'學生表', 'schema', n'dbo', 'table', n'member', null,null

exec 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 course

create table course

(fid char(10) not null primary key,

fname char(50) not null)go

exec sp_addextendedproperty n'ms_description', n'課程表', 'schema', n'dbo', 'table', n'course', null,null

exec 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 score

create 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)go

exec sp_addextendedproperty n'ms_description', n'成績表', 'schema', n'dbo', 'table', n'score', null,null

exec 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.score

from score s

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

inner join dbo.member m on m.mid = s.mid

where c.fname in('語文','歷史','數學','英語')

order by c.fname,m.mname

誰能幫忙做下這道會計分錄,誰幫我做下這道會計分錄題

1 2003年末應計提的存貨跌價準備為 863000 857220 5780 元 應補提的存貨跌價準備為 5780 4210 1570 元 借 資產減值損失 1570貸 存貨跌價準備 1570 2 2004年應計提的存貨跌價準備為 629000 624040 4960 元 應沖銷的存貨跌價準備為 4...

c語言的問題誰能幫我做下,C語言的問題 誰能幫我做下

黃邦勇帥哥哥 第1題 b char p abc 0abcd 0abcde p 0 a,p 1 b p 2 c p 3 0 因此p 4 就指向第二個a,也就是p 4就能輸出第二個d,同理p 9能輸出第三個d 第2題 b for a 0,b 1 a b 2 a 2,b 第一次a 0 2成立,第二次a a...

誰能幫我做一下這道《工程力學》題

這麼簡單都不會?先求跨中彎矩,再求截面慣性矩,然後算出應力,和許用應力比較,大了就失效,小的就安全 工程力學,這個題誰會啊?教教我 謝謝啦! 謝什鬼 你得理解靜力平衡 有點像高中物理物體受平衡力時要麼靜止要麼勻速直線運動物體受力平衡,則合力必為零,通過這條件列公式全部力偶代數和為零 m 0 規定 力...