Skip to content

Commit 63ed5a7

Browse files
committed
README.md modified - Creating Table Query added
1 parent 44aa67c commit 63ed5a7

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Pull requests are welcome. Enjoy!
1212
4. [ Join Queries. ](#joins)
1313
5. [ View Queries. ](#view)
1414
6. [ Altering Table Queries.](#alter)
15+
7. [ Creating Table Query.](#create)
1516

1617
<a name="find"></a>
1718
# 1. Finding Data Queries
@@ -182,8 +183,13 @@ Pull requests are welcome. Enjoy!
182183
### **DROP**: delete a column
183184
* `ALTER TABLE` table_name `DROP COLUMN` column_name;
184185

186+
<a name="create"></a>
187+
# 7. Creating Table Query
185188

186-
187-
188-
189-
189+
### **CREATE**: create a table
190+
* `CREATE TABLE` table_name `(` <br />
191+
`column1` `datatype`, <br />
192+
`column2` `datatype`, <br />
193+
`column3` `datatype`, <br />
194+
`column4` `datatype`, <br />
195+
`);`

0 commit comments

Comments
 (0)