| sql add new column |
|
How to add a new column to the database Syntax #1 How to add a new column to a the existing table ALTER TABLE table_name EXAMPLES: This will add a column called DOB to the student table. Syntax #2 How to add multiple columns to an existing table, the ALTER TABLE syntax is: ALTER TABLE table_name EXAMPLES: ALTER TABLE student |