Showing posts with label How to join in sql database table. Show all posts
Showing posts with label How to join in sql database table. Show all posts

Saturday, 14 May 2016

How to table join in sql

SELECT Product.ProductID, Client.ClientName, Product.ProductDate
FROM Product
INNER JOIN Client
ON Product.ClientID=Client.ClientID;