Lesson 29 of 3291%
(Progress persistence is disabled until Phase 9)
SQL
Beginner
ALTER TABLE
Modify an existing table.
ALTER TABLE
Modify an existing table.
Example
-- Add a new column to users
ALTER TABLE users ADD COLUMN phone TEXT;
SELECT * FROM users;
Test it Yourself