Table1
F1 F2 F3 F4
ab1 bc1 de1 5
ab2 bc2 de2 6
ab3 bc3 de3 0
Table2
F21 F22 F23
5 five d
6 six e
Table3
f31
ab1
ab2
ab3
select a.f1 a.f2 b.f22 from Table1 as a Table2 as b Table3 as c
where a.f1 = c.f31 and a.f4 = b.f21
I am looking for result
ab1 bc1 five
ab2 bc2 sex
ab3 bc3 ""
I dont know how to ask this . But my question is if a.f4 = b.f21 is not matcheed which means
0 is not there in table 3 but still i want to result with empty value .. how to acheive this ?