InterviewSolution
Saved Bookmarks
| 1. |
What is difference between left and right join? |
||||||
Answer»
SELECT column_list FROM table_1 LEFT JOIN table_2 ON column_name1 = column_name2 WHERE join_condition 2. Right JoinSELECT column_list FROM table_1 RIGHT JOIN table_2 ON column_name1 = column_name2 WHERE join_condition |
|||||||