mirror of
https://github.com/gowthamrajk/SQL-Tutorials.git
synced 2026-04-30 22:13:56 +07:00
Update README.md
This commit is contained in:
@@ -301,15 +301,16 @@ 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,
|
||||||
column3 datatype,
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user