Update README.md

This commit is contained in:
GowthamRaj K
2021-07-29 08:38:12 +05:30
committed by GitHub
parent c2390ea077
commit fc7ced84b5
+1 -1
View File
@@ -771,7 +771,7 @@ The following guidelines indicate when the use of an index should be reconsidere
ALTER TABLE table_name ALTER TABLE table_name
DROP PRIMARY KEY; DROP PRIMARY KEY;
# SQL - TRUNCATE TABLE # SQL - TRUNCATE TABLE 🎲
- The SQL TRUNCATE TABLE command is used to delete complete data from an existing table. - The SQL TRUNCATE TABLE command is used to delete complete data from an existing table.
- You can also use DROP TABLE command to delete complete table but it would remove complete table structure form the database and you would need to re-create this table once again if you wish you store some data. - You can also use DROP TABLE command to delete complete table but it would remove complete table structure form the database and you would need to re-create this table once again if you wish you store some data.