I have some data in 3 tables, Table 1 has all the names say, table1 has column Name with data as A,B,C,D,E. Table 2 has columns Name,Logins_T2,Entering_T2. Same way table2 has columns Name,Logins_T3,entering_T3. Now, I want to join these 3 tables, i want all the names of table1 and the columns logins_T2,entering_T2,logins_T3,entering_T3.
How can I join them, i tried by using left join but it is not giving the correct result, can anyone help me do this