CBSE Class 12 Informatics Practices Question 58 of 91

JOINS and SET Operations — Question 9

Back to all questions
9
Question

Question 9

Can you join two tables without using the keyword JOIN ?

Answer

Yes, we can join two tables without using the JOIN keyword. This can be done using the comma (,) operator in the FROM clause to combine tables and using the WHERE clause to specify the join condition. The syntax to perform a JOIN between tableA and tableB on the common column "column1" is as follows:

SELECT * FROM tableA, tableB WHERE tableA.column1 = tableB.column1;