Update README.md

This commit is contained in:
GowthamRaj K
2021-07-27 20:46:11 +05:30
committed by GitHub
parent 951e5fd96e
commit cd093421ba
+2 -1
View File
@@ -301,7 +301,7 @@ Following are some of the most commonly used constraints available in SQL
GROUP BY column_name GROUP BY column_name
HAVING (arithematic function condition); HAVING (arithematic function condition);
SQL CREATE TABLE Statement ### SQL CREATE TABLE Statement
CREATE TABLE table_name( CREATE TABLE table_name(
column1 datatype, column1 datatype,
column2 datatype, column2 datatype,
@@ -310,6 +310,7 @@ column3 datatype,
columnN datatype, columnN datatype,
PRIMARY KEY( one or more columns ) PRIMARY KEY( one or more columns )
); );
SQL DROP TABLE Statement SQL DROP TABLE Statement
DROP TABLE table_name; DROP TABLE table_name;
SQL CREATE INDEX Statement SQL CREATE INDEX Statement