SQL INNER JOIN keyword The INNER JOIN keyword returns rows when there is at least one match in the table.
INNER JOIN keyword syntax
SELECT column_name(s)
FROM table_name1
INNER JOIN table_name2
ON table_name1.column_name=table_name2.column_name
Note: INNER JOIN is the same as JOIN.
Original table (used in the example):
"Persons" table:
Id_P LastName FirstName Address City
1 Adams John Oxford Street London
2 Bush George Fifth Avenue New York
3 Carter Thomas Changan Street Beijing
"Orders" table:
Id_O OrderNo Id_P
1 77895 3
2 44678 3
3 22456 1
4 24562 1
5 34764 65
INNER JOIN Example Now, we want to list everyone's orders.
You can use the following SELECT statement:
SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
INNER JOIN Orders
ON Persons.Id_P=Orders.Id_P
ORDER BY Persons.LastName
Result set:
LastName FirstName OrderNo
Adams John 22456
Adams John 24562
Carter Thomas 77895
Carter Thomas 44678
The INNER JOIN keyword returns rows when there is at least one match in the table. If there are rows in "Persons" that do not match in "Orders", they will not be listed.