注册 登录
编程论坛 SQL Server论坛

菜鸟求助,这段SQL语句与我的语句有什么区别?

暴牙齿 发布于 2020-06-27 19:37, 1938 次点击
软件中有这样一段SQL代码:
select a.* from dbo.工资发放 a left join dbo.职工花名册 b on a.身份证号=b.身份证号 left join dbo.职工花名册 c on a.姓名=c.姓名 left join  dbo.职工花名册 d on a.工号=d.职工号 where  b.身份证号 is null and c.姓名 is null and d.职工号 is null;
想求教一下为什么要写得这么复杂,能不能改写成这样:
select a.* from dbo.工资发放 a left join dbo.职工花名册 b where  b.身份证号 is null and b.姓名 is null and b.职工号 is null;
这两种写法有什么区别?
5 回复
#2
晟美2020-06-29 14:25
两种好像都是错的,第一种:(a left join dbo.职工花名册 b )(left join dbo.职工花名册 c)(left join  dbo.职工花名册 d )命名错误只能命名一次,不能又a又b又c的。  第二种:(a left join dbo.职工花名册 b)a left...on...为完整语句不能拆开。
正确写法:select a.* from dbo.工资发放 a
left join dbo.职工花名册 b on a.身份证号=b.身份证号 where  b.身份证号, b.姓名, b.职工号 is null;
工资发放与职工花名册表单有一个left on 就能关联上,不用写三个。
#3
暴牙齿2020-06-29 19:33
回复 2楼 晟美
谢谢指点!
#4
mywisdom882020-07-01 22:45
软件中有这样一段SQL代码:
select a.* from dbo.工资发放 a
left join dbo.职工花名册 b on a.身份证号=b.身份证号
left join dbo.职工花名册 c on a.姓名=c.姓名
left join dbo.职工花名册 d on a.工号=d.职工号
where b.身份证号 is null and c.姓名 is null and d.职工号 is null

上面的句子是可以这样写,没错;但,可以改成下面的

select a.* from dbo.工资发放 a
left join dbo.职工花名册 b on a.身份证号=b.身份证号 and a.姓名=b.姓名 and a.工号=b.职工号
where b.身份证号 is null and b.姓名 is null and b.职工号 is null
#5
暴牙齿2020-07-03 06:07
回复 4楼 mywisdom88
谢谢指点,我写那个语句忘了最基本的join...on的搭配。
#6
sssooosss2020-07-05 09:29
共同学习
1