Hi,
I have the column "IPAddress" in three different tables, say, T1, T2 and T3. I want to take each IPAdress from each table and find out if it is present in other two tables.
For Example,
9.9.9.9 is present in T1 & T3.
9.1.1.1 is present only in T3.
So, the result should be,
Column1 Column2 Column3
9.9.9.9 null 9.9.9.9
null null 9.1.1.1
How do i join three tables???????