QUESTION IMAGE
Question
question 10 (2 points) saved
listen
which sql keyword is used to name a new table and describe the tables columns?
- set
- create
- select
- alter
Brief Explanations
To determine the correct SQL keyword:
- "SET" is used for assigning values (e.g., in UPDATE statements), not for table creation.
- "CREATE" is used to define new database objects like tables, specifying the table name and column details (e.g.,
CREATE TABLE table_name (column1 datatype, column2 datatype, ...);). - "SELECT" is for querying data from tables, not creating them.
- "ALTER" is for modifying existing database objects, not creating new ones.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
- CREATE