Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SELECT TOP(5) e.[EmployeeID], e.[JobTitle], e.[AddressID], a.[AddressText]
- FROM [Employees] e
- JOIN [Addresses] a ON e.[AddressID] = a.AddressID
- ORDER BY e.[AddressID]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement