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

Popular posts from this blog

Write a query to practice in Northwind database

How to write an email for last day in office