Advertisement
dragonbs

Employee Address

Sep 28th, 2023
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.17 KB | None | 0 0
  1. SELECT TOP(5) e.[EmployeeID], e.[JobTitle], e.[AddressID], a.[AddressText]
  2. FROM [Employees] e
  3. JOIN [Addresses] a ON e.[AddressID] = a.AddressID
  4. ORDER BY e.[AddressID]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement