SQL DDL Commands
SQL DDL Commands
2. ALTER
o Definition: Modifies an existing database object.
o Example:
ALTER TABLE Employees
ADD Email VARCHAR(100);
3. DROP
o Definition: Deletes an existing database object.
o Example:
DROP TABLE Employees;
TRUNCATE
o Definition: Deletes all records from a table but
keeps the table structure.
o Example:
TRUNCATE TABLE Employees;
4. RENAME
o Definition: Changes the name of a database object.
o Example:
Medium-Level Questions:
1. Write a SQL statement to create a table called
Customers with columns for CustomerID, Name, and
Address.
2. How would you change the data type of a column in an
existing table?
3. What is the syntax to drop an index from a table in
SQL?
4. Explain how to use the ALTER TABLE command to
rename a column.
5. Describe the difference between TRUNCATE and DROP
commands with examples.
High-Level Questions:
1. Write a SQL script to create a table with a primary key,
a foreign key, and a unique constraint.
2. How can you use the ALTER TABLE command to add a
constraint to an existing table?
3. What are the potential impacts of using TRUNCATE
versus DELETE on a table with foreign key constraints?
4. Explain how the RENAME command affects dependent
objects in the database.
5. Describe the steps and considerations for dropping a
table that is referenced by other tables through foreign
keys.
Write a SQL script to create a table with a primary key, a
foreign key, and a unique constraint.
• Answer:
CREATE TABLE Departments (
DepartmentID INT PRIMARY KEY, -- Primary Key
DepartmentName NVARCHAR(100) UNIQUE -- Unique
Constraint
);