Can we writes inner join differently?
-- Inner join
select * from dbo.Products P
join Suppliers s on s.SupplierID=P.SupplierID
OUTPUT:
-- inner join using where clause
select * from dbo.Products P,
Suppliers s where s.SupplierID=P.SupplierID
Output:
Comments
Post a Comment