Join on 抒蝭拚豢隞嗆敶梢澴oin批捆嚗雿銝敶梢澴oin蝮賜詻
Join 敺 where 璇隞嗅敶梢澴oin蝮賜賂雿Join批捆銝敶梢踴
靘憒嚗
table_a
id num
1 3
2 5
3 1
table_b
id num
1 9
2 8
4 10
select a.* , b.num
from table_a a left join table_b b
on a.id = b.id
id num num
1 3 9
2 5 8
3 1 null
select a.* , b.num
from table_a a left join table_b b
on a.id = b.id and a.num > 4
id num num
1 3 null
2 5 8
3 1 null
嚗砍臭誑撠演able_b id=1 ,num = 9鞈嚗雿臬箏矣n摮亙批鈭 a.num > 4嚗撠愒able_a id = 1 , num = 3鞈銝餃table_b id=1 , num = 9鞈
select a.* , b.num
from table_a a left join table_b b
on a.id = b.id
where a.num > 4
id num num
1 3 9
2 5 8
3 1 null
id num num
2 5 8
Post your comment:
Powered By 2013-2015 ©. Juszeil Conception version 2.0
Queries Executed : 0.0116 seconds