4 lines
150 B
MySQL
4 lines
150 B
MySQL
|
|
select 'Merging Stage into requests';
|
||
|
|
insert into requests select * from stage where not exists (select 1 from requests where requests.id=stage.id);
|
||
|
|
|