We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44aa67c commit 63ed5a7Copy full SHA for 63ed5a7
README.md
@@ -12,6 +12,7 @@ Pull requests are welcome. Enjoy!
12
4. [ Join Queries. ](#joins)
13
5. [ View Queries. ](#view)
14
6. [ Altering Table Queries.](#alter)
15
+7. [ Creating Table Query.](#create)
16
17
<a name="find"></a>
18
# 1. Finding Data Queries
@@ -182,8 +183,13 @@ Pull requests are welcome. Enjoy!
182
183
### **DROP**: delete a column
184
* `ALTER TABLE` table_name `DROP COLUMN` column_name;
185
186
+<a name="create"></a>
187
+# 7. Creating Table Query
188
-
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