#Assuming that there is a database called MyDatabase#creates a table called TableName, with columns Name, Age, and ClassUseMyDatabase;
create table TableName(
No.int primary key,
Name varchar(50),
Age int,
Classvarchar(15));
Posted by: Guest
on April-20-2021
2
MySQL CREATE TABLE
The CREATETABLE statement allows you to create a new table in a database.
The following illustrates the basic syntax of the CREATETABLE statement:
CREATETABLE [IFNOTEXISTS] table_name(
column_1_definition,
column_2_definition,
...,
table_constraints
) ENGINE=storage_engine;
Let’s examine the syntax in greater detail.
First, you specify the name of the table that you want to create after the CREATETABLE keywords. The table name must be unique within a database. The IFNOTEXISTS is optional. It allows you to check if the table that you create already exists in the database.Ifthis is the case, MySQL will ignore the whole statement and will not create any new table.
Second, you specify a list of columns of the table in the column_list section, columns are separated by commas.
Third, you can optionally specify the storage engine for the table in the ENGINE clause. You can use any storage engine such as InnoDB and MyISAM.If you don’t explicitly declare a storage engine, MySQL will use InnoDB by default.
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email