left join不符合条件的列为何不显示null?

--学生表

create table Studend(

       id number(2,0) primary key,

       sname nvarchar2(20) not null,

       sage number(2,0) not null

);

--成绩表

create table SC(

       stu_id number(2,0) references Studend(id),

       cou_id number(2,0) references Course(cid),

       score number(2,0)

);

 --左外连接查询语句      

select a.*,b.* from Studend a 

       left join SC b on a.id=b.stu_id;

不符合条件查询的列直接是什么都没有,为什么不是null?

wj鱼尾3376905
浏览 3236回答 1
1回答

迁就LOSE

先上图占坑,明天再仔细看看。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Oracle