What is the left outer join in SQL?

Query By: HAJRAT ALI

J

Jessica

LEFT OUTER JOIN in SQL

JOINING always works between two or more tables. How LEFT OUTER JOIN worked, let's understand with an example of two tables named table one LEFT_Table and table two RIGHT_Table. In LEFT OUTER JOIN, it returns all rows from the LEFT_Table that do not exist in the RIGHT_Table in the result.


Read The Full Tutorial on SQL


Query Look Like of LEFT OUTER JOIN

SELECT *

FROM LEFT_Table

LEFT [OUTER] JOIN RIGHT_Table

ON LEFT_Table.column_name = RIGHT_Table.column_name;

1 votes

Your Answer

Email Us: advertise@gdatamart.com

Donate Us: Support to GDATAMART

LifeStyle & Fun

© 2024 GDATAMART.COM (All Rights Reserved)