Hi All,
I have 2 tables with the following data.
Table1
Col1 Col2
a b
a c
a d
a e
Table 2
Col1 Col2
a 1
a 2
a 3
I have to write query that will get
a b 1
a c 2
a d 3
a e null
Thanks
I have 2 tables with the following data.
Table1
Col1 Col2
a b
a c
a d
a e
Table 2
Col1 Col2
a 1
a 2
a 3
I have to write query that will get
a b 1
a c 2
a d 3
a e null
Thanks
Comment