What Is The Syntax For Self Join #218
What is the syntax for self join?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Joins - SQL Self Join - Quiz No.1.
What is the syntax for self join?
Select column_list From table1 SELF JOIN table1 Where condition(s);
Select column_list From table1 JOIN table1 Where condition(s);
Select column_list From table1 T SELF JOIN table1 S Where condition(s);
Select column_list From table1 T JOIN table1 S Where condition(s);