Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question 10 (2 points) saved listen which sql keyword is used to name a…

Question

question 10 (2 points) saved
listen
which sql keyword is used to name a new table and describe the tables columns?

  1. set
  2. create
  3. select
  4. alter

Explanation:

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.

Answer:

  1. CREATE