EasyBasic SELECT
Add a new column to an existing table
The query
SQL
ALTER TABLE employees
ADD COLUMN phone_number VARCHAR(20);Note
“Adds a new column. Existing rows will have NULL for this column.
ALTER TABLE employees
ADD COLUMN phone_number VARCHAR(20);Note
“Adds a new column. Existing rows will have NULL for this column.