You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
delete from fm_templates where id in (select id from tmp_templates); |
|
|
|
insert into fm_templates(id, |
|
content, |
|
description, |
|
comment, |
|
version) select id, |
|
content, |
|
description, |
|
comment, |
|
version from tmp_templates; |
|
|
|
drop table tmp_templates; |
|
|
|
|