I Have Two table Employees and Salary !!!. I Want to see the following output using query .
ID NAME SALARY
3 C
4 D
I have written the sql query .but i did not get the in the following order. I want to get in the following order .
.The query needs to return
ID NAME SALARY
3 C
4 D
here is the following MS Access query .but i did not get the above results .let me know please .any help would be highly appreciated.
ID NAME SALARY
3 C
4 D
I have written the sql query .but i did not get the in the following order. I want to get in the following order .
.The query needs to return
ID NAME SALARY
3 C
4 D
here is the following MS Access query .but i did not get the above results .let me know please .any help would be highly appreciated.
Code:
SELECT Employees.ID, Employees.Name, Salary.Salary
FROM Employees RIGHT JOIN Salary ON Employees.ID=Salary.ID;