王珊、萨师焰005
链接:> 提取码:o3z4 复制这段内容后打开百度网盘手机APP, *** 作更方便哦!
若资源有问题欢迎追问~
不知道你表怎么建的,目测是你数据有问题(第四个字段在这题里没什么用,就没写,另外:你第一个图的语句也不对,会多出来两个null关联起来的情况,所以最后我改了一下)
create table course(cno int,
cname varchar(50),
cpno int)
insert into course values (1,'数据库',5)
insert into course values (2,'数学',null)
insert into course values (3,'信息系统',1)
insert into course values (4,' *** 作系统',6)
insert into course values (5,'数据结构',7)
insert into course values (6,'数据处理',null)
insert into course values (7,'PASCA语言',6)
select firstcno,secondcpno from course first,course second where firstcpno=secondcno and secondcpno is not null
最好把你的插入数据语句发出来,才能看出来问题,我这个得执行结果:
以上就是关于哪位有王珊萨师煊老师编的《数据库系统概论》(第四版)教材配套的源代码全部的内容,包括:哪位有王珊萨师煊老师编的《数据库系统概论》(第四版)教材配套的源代码、数据库系统概论、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)