SQL Exercises
SQL Exercises
Solution
Write a SQL statement that displays all the information about all salespeople.
SQL Code:
SELECT *
FROM salesman;
Sample table
1. From the following table, write a SQL query to find out which nurses have
not yet been registered. Return all the fields of nurse table.