Question
Easy

SQL command used to add a new column in an existing table is :

1
ALTER
2
UPDATE
3
CHANGE
4
ADD NEW
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Database Management System (DBMS) & SQL
Topic: SQL
Correct Answer
Option A
Explanation

The correct option is (1): The ALTER command is the foundational statement in Structured Query Language (SQL) used for modifying the structure, or schema, of an existing database object, such as a table. It is a key command within the Data Definition Language (DDL) subset of SQL, which focuses on database structure rather than the data itself. To add a new column to a table, the correct syntax explicitly uses…Read More