SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table customers ( id int primary key auto_increment, name varchar(128) ); create table products ( id int primary key auto_increment, name varchar(128) ); create table baskets ( id int primary key auto_increment, user_id int references customers(id), product_id int references products(id), price decimal(9, 2), amount decimal(6, 3) );
Stuck with a problem? Got Error? Ask ChatGPT!
Copy Clear