-- I could use join
/*select * from table1 join table2 On table1.column_name1 = table2.column_name1*/
This will list down the records(with same data in column_name1) for all columns in table1 and table2
What if you have situation for multiple tables..
/*select * from table1 join table2 On table1.column_name1 = table2.column_name1*/
This will list down the records(with same data in column_name1) for all columns in table1 and table2
What if you have situation for multiple tables..
No comments:
Post a Comment