--学生表
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?
迁就LOSE
相关分类