· 7 years ago · Oct 15, 2018, 09:18 PM
1drop table if exists products;
2
3create table products (
4id int not null auto_increment,
5title varchar(100) not null,
6description text not null,
7image_url varchar(200) not null,
8price decimal(10,2) not null,
9primary key (id)
10);