From 04abf70efc72df50f4a94274f521173c983d7e70 Mon Sep 17 00:00:00 2001 From: Nikhat Zaidi <44525743+NikhatZaidi@users.noreply.github.com> Date: Wed, 6 Mar 2019 00:12:56 +0530 Subject: [PATCH] Described usage of ALTER TABLE statement (#30349) Description of where the ALTER TABLE statement can be used in a RDBMS --- guide/english/sql/sql-alter-table-statement/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/sql/sql-alter-table-statement/index.md b/guide/english/sql/sql-alter-table-statement/index.md index d8408f8fdc..3c91bd03a9 100644 --- a/guide/english/sql/sql-alter-table-statement/index.md +++ b/guide/english/sql/sql-alter-table-statement/index.md @@ -6,7 +6,7 @@ title: SQL Alter Table Statement ## Introduction This guide will introduce you to and attempt to explain some of the basics of the SQL alter table functions within a relational database. -**IMPORTANT Safety Tip: ALWAYS backup your data before making changes!** +ALTER TABLE statement is used to add, remove, change datatype or rename columns. It can be also used to add or remove the constraints of the table.**IMPORTANT Safety Tip: ALWAYS backup your data before making changes!** We will be using MySQL for all examples throughout this freeCodeCamp SQL guide. The reasons for selecting MySQL are 1) it is very commonly used on websites for the backend database, 2) it's free, and is fun and easy to use.