Update README.md

This commit is contained in:
GowthamRaj K
2021-07-27 20:46:55 +05:30
committed by GitHub
parent 9d1e3913cd
commit 15e034f0c4
+2 -1
View File
@@ -314,9 +314,10 @@ Following are some of the most commonly used constraints available in SQL
### SQL DROP TABLE Statement
DROP TABLE table_name;
SQL CREATE INDEX Statement
### SQL CREATE INDEX Statement
CREATE UNIQUE INDEX index_name
ON table_name ( column1, column2,...columnN);
SQL DROP INDEX Statement
ALTER TABLE table_name
DROP INDEX index_name;