2、age int,PRINT 'I AM A STUDENT
3、存储过程,在插入,删除或修改特定表中的数据时触发执行
4、实体、联系、属性
5、游标
6、B
7、A
8、B
9、C
10、略
数据库都不建好,这让别人很难给你回答!幸好我也要考数据库,顺手写下了:(收悬赏分的哦!呵呵……)4.select sname
from student,sc
where student.sno=sc.sno and cno='1'
5.select sname
from student
where sdept =(select sdept
from student
where sname='刘晨')
6.delete
from student
where sdept='cs'
7.Grant select,update(sname)
on student
to ut
8.update student
set sage=20
where sage<20
9.select sname ,sc.cno,cname
from student,sc,co
where student.sno=sc.sno and sc.cno=co.cno and sname='刘晨'
10.select sname,sage
from student,sc,co
where student.sno=sc.sno and sc.cno=co.cno and cname='数据库'
注:数据库要自己那建立,我用的是SQL2000,建表:学生表 student 选修表sc 课程表co
特别在建时sc参照student时,外码要建立级连删除,级连修改,及on update cascade, on delete
cascade不然第8题运行时将拒绝执行。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)