5
INSERISCI IN… SELEZIONA per tutte le colonne MySQL
Sto cercando di spostare i vecchi dati da: this_table >> this_table_archive copiando tutte le colonne. L'ho provato, ma non funziona: INSERT INTO this_table_archive (*) VALUES (SELECT * FROM this_table WHERE entry_date < '2011-01-01 00:00:00'); Nota: le tabelle sono identiche e sono idimpostate come chiave primaria.
119
mysql
select
insert-into