231k views
2 votes
Which SQL keyword is used to name a new table and describe the table's columns?

a) SET
b) CREATE
c) SELECT
d) ALTER
e) MODIFY

User Olja
by
7.0k points

1 Answer

3 votes

Final answer:

The CREATE keyword is used to name a new table and describe the table's columns in SQL

Step-by-step explanation:

The correct SQL keyword used to name a new table and describe the table's columns is the CREATE keyword. When using the CREATE keyword, you can specify the table name and define the columns along with their data types and any constraints. For example, you can create a table named 'Employees' and define columns such as 'ID Name', and Salary using the CREATE keyword and appropriate data types.

User Easton Bornemeier
by
7.2k points