How to make or create a table in SQL?

Query:

create table userquickprofile
(
id int(20) AUTO_INCREMENT,
name varchar(250),
email varchar(250),
role varchar(250),
age varchar(250),
sex varchar(250),
height varchar(250),
weight varchar(250),
heartrate varchar(250),
bodyweight varchar(250),
primary key(id));
)

No comments:

Post a Comment