HOW TO USE LEFT JOIN IN SQL?

374 viewsSQLSQL
0

HOW TO USE LEFT JOIN IN SQL?

Saraswat World Changed status to publish June 8, 2023
0
LEFT JOIN in SQL
LEFT JOIN in SQL

LEFT JOIN/LEFT OUTER JOIN clause select all the records from left table(table1) and the matching records from the right table(table2).

Syntax of LEFT JOIN in SQL-

SELECT <column_name(s)>

FROM <table1>

LEFT JOIN<table2>

ON <table1.column_name=table2.column_name>

WHERE<condition>;

Example of LEFT JOIN in SQL-

SELECT Customers.CustomerName, Orders.OrderID

FROM Customers

LEFT JOIN Orders

ON Orders.CustomerID = Customers.CustomerID;

LEFT JOIN returns all records from the left table (Customers), even if there are no matches in the right table (Orders). In the above example, SQL statement will select all customers and their orders.

Saraswat World Changed status to publish June 8, 2023
Write your answer.

Posted

in

Tags:

Comments

Leave a Reply

Ganesh Ji Arti A Tribute to Dilip Kumar