What is represented by the comma-separated list of items following the SELECT command in this example? SELECT movieID, title
- aliases
- records
- table names
- columns (attributes)
Answers Explanation & Hints:
The SELECT command is followed by a list of the columns (attributes) that will be read and returned from the database table. The values contained in the movieID and title fields will be returned in this example. |