left join in sql code example

Example 1: right join sql

#The RIGHT JOIN keyword Return all rows from the right table (table_name2), even if there are no
#matches in the left table (table_name1). 
syntax->SELECT column_name(s)
FROM table_name1
RIGHT JOIN table_name2
ON table_name1.column_name=table_name2.column_name 
////example////
SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
RIGHT JOIN Orders
ON Persons.P_Id=Orders.P_Id
ORDER BY Persons.LastName

Example 2: sql right join

SELECT *
FROM table_1
RIGHT JOIN table_2
ON table_1.common_field = table_2.common_field;

Example 3: mysql left join

/*Two tables: CUSTOMERS table and ORDERS table.
ORDERS table contains STATUS attribute.*/
SELECT 
    customers.customerNumber, 
    customerName, 
    orderNumber, 
    status
FROM
    customers
LEFT JOIN orders ON 
    orders.customerNumber = customers.customerNumber;

Example 4: sql left join

SELECT table1.column1, table2.column2...
FROM table1
LEFT JOIN table2
ON table1.common_field = table2.common_field;

Example 5: left join sql

SELECT column_name(s)

FROM table1

LEFT JOIN table2
 ON table1.column_name = table2.column_name;

Example 6: left join mysql

SELECT 
    Student_details.*,
    Attendance.*
FROM
    Student_details
LEFT JOIN Attendance ON 
    Student_details.s_id = Attendance.s_id;

Tags:

Misc Example