Showing posts with label right join in sql. Show all posts
Showing posts with label right join in sql. Show all posts

Saturday, 14 May 2016

How to right join in sql

SELECT Product.ProductID, Client.Name
FROM Product
RIGHT JOIN Client
ON Product.ClientID=Client.ClientID
ORDER BY Product.ProductID;