The SQL command that allows a user to list the contents of a
The SQL command that allows a user to list the contents of a table is INSERT Update COMMIT SELECT
Solution
SELECT is the statement which will list the content of the table.
For example:
Let relation be Employee(FirstName,LastName,Gender)
To list first and last name of an employee below query can be used:
SELECT FirstName,LastName
from Employee
