Last active
July 12, 2023 17:45
-
-
Save VictoriaKwamboka/6feefe73e31fda997934f5ce37f524bc to your computer and use it in GitHub Desktop.
Inner Join
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT EmployeeDemographics.EmployeeID, FirstName, LastName, Age | |
FROM EmployeeDemographics | |
INNER JOIN EmployeeSalary | |
ON EmployeeDemographics.EmployeeID = EmployeeSalary.EmployeeID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment