move a record from posts
to archive
$stmt = $db->prepare(
"insert into archive (date, art, img, vid, title, subtitle, story, tags, status, user, pos, titlex, inde)
select date, art, img, vid, title, subtitle, story, tags, status, user, pos, titlex, inde from posts
where id = :aid"
);
don't tell me that there is no option like:
move * except id...
id
is not movable due to a possible colision with archive's ids.