SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table staff like sakila.staff; insert into staff select * from sakila.staff; create table department ( department_id int auto_increment primary key , name varchar(64) ); insert into department (name) values ('Management'),('Sales'); ; ALTER TABLE staff add department_id int, add foreign key (department_id) references department (department_id); update staff set department_id = (select department_id from department where name = 'Sales') ; select staff_id, department_id from staff;

Stuck with a problem? Got Error? Ask ChatGPT!

Copy Clear