From e765771500312723e1e48e4309e51096db55bcbf Mon Sep 17 00:00:00 2001 From: Sauradip Ghosh Date: Fri, 7 Jun 2024 20:00:46 +0530 Subject: [PATCH] Update 101-alter-table.md (#5830) --- src/data/roadmaps/sql/content/102-ddl/101-alter-table.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/sql/content/102-ddl/101-alter-table.md b/src/data/roadmaps/sql/content/102-ddl/101-alter-table.md index 6d8dd0b95..16cc41ffd 100644 --- a/src/data/roadmaps/sql/content/102-ddl/101-alter-table.md +++ b/src/data/roadmaps/sql/content/102-ddl/101-alter-table.md @@ -71,5 +71,5 @@ To drop PRIMARY KEY: ```sql ALTER TABLE table_name DROP PRIMARY KEY; - +``` In conclusion, `ALTER TABLE` in SQL lets you alter the structure of an existing table. This is a powerful command that lets you dynamically add, modify, and delete columns as well as the constraints placed on them. It ensures you are more flexible in dealing with changing data storage requirements.