How to make or create a table in sql using wordpress?

Woocoders
Woocoders
2nd September 2020
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));
)

Share this post: