Answer:
SELECT *
FROM salesman;
Explanation:
SQL is a structured query language used for database management, creation and manipulation.
The above statement is an SQL statement that can be used to display the information of all salesmen in the table.
"SELECT" is often times the start of every SQL query syntax which is used to indicate the information to be displayed.
" * " is a wildcard which indicates that you want all rows present in the table to be displayed.
"FROM" usually comes before the table name. It indicates the table from which you want your data to be selected.
"salesman" is the table name
" ; " indicates the end of an SQL statement and it is also an indication that you want your query to be executed.
Therefore, the statement is interpreted as "Select all rows(every individual) from the table salesman