SQL Statement:

x
 
SELECT Orders.OrderID, Employees.LastName, Employees.FirstName
FROM Orders
RIGHT JOIN Employees
ON Orders.EmployeeID = Employees.EmployeeID
ORDER BY Orders.OrderID;
        

Edit the SQL Statement, and click "Run SQL" to see the result.

Result:

Click "Run SQL" to execute the SQL statement above.
W3Schools has created an SQL database in your browser.
The menu to the right displays the database, and will reflect any changes.
Feel free to experiment with any SQL statement.
You can restore the database at any time.

The Try-SQL Editor ?
at w3schools.com

Your Database: