If you need to add a new column named Email to an existing table called Users,…

2026

If you need to add a new column named Email to an existing table called Users, which statement would you use?

Answer: B. ALTER TABLE Users ADD Email VARCHAR(50);

  1. A.

    UPDATE Users ADD Email VARCHAR(50);

  2. B.

    ALTER TABLE Users ADD Email VARCHAR(50);

  3. C.

    ALTER Users INSERT Email VARCHAR(50);

  4. D.

    UPDATE TABLE Users ADD Email VARCHAR(50);

Attempted by 904 students.

Show answer & explanation

Correct answer: B

Explore the full course: Bpsc

Loading lesson…