CREATE TABLE students (
studentID int,
Name varchar(255),
Email varchar(255),
Class int,
Section int
);
CREATE TABLE tablename (
column1 datatype,
column2 datatype,
column3 datatype,
column5 datatype,
column4 datatype,
.....
);
Note : In table name not allow " " space in beetween name use "_" for space.
column1 to column4 is coloum name you can modify and name give you according requirement.
datatype data type basically define a type of column . Example column1 is int show store integer
value.
You Can follow statement and create table in Mysql
CREATE TABLE students (
studentID int,
Name varchar(255),
Email varchar(255),
Class int,
Section int
);
when run this statement in sql create a table in your database.
Like studentID, Class, Section datatype is Int this column hold integer value same like Name, Email
column datatype is varchar hold character and max-lengh is 255.
Your Student table Looks Like this :
Summery:
In this blog we are focus on how to create a table in MySQL database using query. every one follow this blog and create a table in mySQL easy way. I think this blog helping in creating a table in MySQL...