Collections:
CREATE TABLE Statement in MySQL
How To Create a New Table in MySQL?
✍: FYIcenter.com
If you want to create a new table, you can use the "CREATE TABLE" statement. The following tutorial script shows you how to create a table called "tip":
mysql> CREATE TABLE tip (id INTEGER PRIMARY KEY, subject VARCHAR(80) NOT NULL, description VARCHAR(256) NOT NULL, create_date DATE NULL); Query OK, 0 rows affected (0.08 sec)
This scripts creates a testing table called "tip" with 4 columns in the current database.
⇒ CREATE Command Denied Error in MySQL
⇐ What Are DDL Statements in MySQL
2018-03-10, 2334🔥, 0💬
Popular Posts:
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...