INNER JOIN

An inner join is a join in which the values in the columns being joined are compared using a comparison
operator.

SELECT * 
FROM HumanResources.Employee AS e
INNER JOIN Person.Person AS p
ON e.BusinessEntityID = p.BusinessEntityID
ORDER BY p.LastName
Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.