- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL ADD COLUMN
The ADD COLUMN
statement in SQL is used to add new columns to an existing table.
Key Features of SQL ADD COLUMN
- Adds a new column without affecting existing data.
- Can specify data type, default value, and constraints.
- Multiple columns can be added in a single statement.
SQL ADD COLUMN Syntax
Example: Adding a Single Column
- Adds a new column
Email
to theEmployees
table.
Example: Adding Multiple Columns
- Adds
Age
andAddress
columns to theEmployees
table.
Example: Adding a Column with Default Value
- Adds a
Status
column with a default value of'Active'
.
Example: Adding a Column with NOT NULL Constraint
- Adds a
JoinDate
column that cannot haveNULL
values.
Summary
ADD COLUMN
allows modifying an existing table.- Supports constraints like
DEFAULT
,NOT NULL
, etc. - Multiple columns can be added at once.
- Ensure existing data compatibility before adding columns.