Using Where/And in Joins
- When Using the inner joins or any kind of joins we can use where/and
Ex : Select * from TableA inner join TableB
on TableA.Id =TableB.Id
Where/and TableA.Id=1
- Here we will get the result same whether we use And /where
Comments
Post a Comment