Q. What are JOINS?
Answer =
A JOIN is a query that combines tuples from more than one table. In a join query, the table names are given with FROM clause, separated by a comma.
For example,
SELECT name, salary
FROM emp1, emp2;
In this statement, the two tables are emp1 and emp2 from which the column name and salary are extracted.
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )