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.