- 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 ALTER TABLE
The ALTER TABLE
statement modifies an existing table by adding, deleting, or modifying columns and constraints.
Key Features of SQL ALTER TABLE
- Add new columns to a table.
- Modify existing columns (e.g., change data type, constraints).
- Drop columns or constraints.
- Rename columns or the table.
SQL ALTER TABLE Syntax
ALTER TABLE table_name
ADD column_name datatype constraint;
ALTER TABLE table_name
MODIFY column_name new_datatype;
ALTER TABLE table_name
DROP COLUMN column_name;
Example: Adding a Column
ALTER TABLE Employees
ADD Email VARCHAR(100);
- Adds a new column
Email
to theEmployees
table.
Example: Modifying a Column
ALTER TABLE Employees
MODIFY Salary DECIMAL(12,2);
- Changes the
Salary
column to allow 12 digits with 2 decimal places.
Example: Dropping a Column
ALTER TABLE Employees
DROP COLUMN Age;
- Removes the
Age
column from theEmployees
table.
Example: Renaming a Column
ALTER TABLE Employees
RENAME COLUMN Name TO FullName;
- Renames the
Name
column toFullName
.
Example: Renaming a Table
ALTER TABLE Employees
RENAME TO Staff;
- Renames the
Employees
table toStaff
.
Summary
ALTER TABLE
is used to modify table structure.- Can add, modify, drop, or rename columns and tables.
- Use carefully to prevent data loss.