In this web programming tutorial we will learn that how we can write sql query for Inner join see the below inner join query,
SELECT *
FROM Products
INNER JOIN Suppliers
ON Products.SupplierID = Suppliers.SupplierID
SELECT *
FROM Products
INNER JOIN Suppliers
ON Products.SupplierID = Suppliers.SupplierID
No comments:
Post a Comment