- 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 DROP COLUMN
The DROP COLUMN
statement in SQL is used to remove an existing column from a table.
Key Features of SQL DROP COLUMN
- Deletes a column permanently from a table.
- Cannot be undone unless backed up.
- Can drop multiple columns in a single query (supported in some databases).
SQL DROP COLUMN Syntax
ALTER TABLE table_name
DROP COLUMN column_name;
Example: Dropping a Single Column
ALTER TABLE Employees
DROP COLUMN Email;
- Removes the
Email
column from theEmployees
table.
Example: Dropping Multiple Columns (MySQL, PostgreSQL)
ALTER TABLE Employees
DROP COLUMN Age,
DROP COLUMN Address;
- Removes
Age
andAddress
columns from theEmployees
table.
Example: Dropping a Column in SQL Server
ALTER TABLE Employees
DROP COLUMN Status;
- Removes the
Status
column in SQL Server.
Summary
DROP COLUMN
permanently removes a column from a table.- Some databases allow dropping multiple columns at once.
- Ensure there is no dependency on the column before dropping it.
- Backup data before performing this action.