CompTIA
FC0-U61 · Question #383
A developer needs to add a table to a database. Which of the following database activities should the user perform?
The correct answer is C. CREATE. The CREATE statement is used to add a new table to a database. The syntax of the CREATE CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ... );
Database Fundamentals
Question
A developer needs to add a table to a database. Which of the following database activities should the user perform?
Options
- AUPDATE
- BALTER
- CCREATE
- DREPORT
How the community answered
(20 responses)- A5% (1)
- B5% (1)
- C90% (18)
Explanation
The CREATE statement is used to add a new table to a database. The syntax of the CREATE CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ... );
Topics
#SQL DDL#database tables#CREATE statement
Community Discussion
No community discussion yet for this question.