Answer Posted / hr@tgksolutions.com
• Inner Join: Returns matching rows from both tables.
• Left Join (Left Outer Join): Returns all rows from the left table and matching rows from the right table.
• Right Join (Right Outer Join): Returns all rows from the right table and matching rows from the left table.
• Full Join (Full Outer Join): Returns all rows when there’s a match in one of the tables.
• Cross Join: Returns the Cartesian product of both tables.
• Self Join: A table joins itself.
Example Query:
SELECT e1.name, e2.name AS manager_name
FROM employees e1
JOIN employees e2 ON e1.manager_id = e2.id;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explian rowid, rownum? What are the psoducolumns we have?
How do I install sql?
What are the features of pl sql?
What are the different types of dbms?
how to convert numeric values to character strings? : Sql dba
Can a foreign key be a duplicate?
Define union, minus, union all, intersect ?
Where is pl sql used?
What are the types of functions in sql?
What is an alias command?
Why truncate is faster than delete?
Write a sql query to convert all character to uppercase after hypen.
What is a left join?
How to run pl sql program in mysql?
What are synonyms in sql?