What is represented by the comma-separated list of items following the SELECT command in this example?
SELECT movieID, title
- aliases
- columns (attributes)
- records
- table names
Explanation: 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.
Related exam: Module 6.3.2 Quiz - Introduction to Relational Databases and SQL
