Mysql
 sql >> Database >  >> RDS >> Mysql

Copia i dati da una tabella all'altra e aggiungi dati aggiuntivi

 INSERT INTO TABLE1 (col 1, col2,..., the_extra_col) SELECT *, NULL from TABLE2

o

 INSERT INTO TABLE1 (col 1, col2,..., the_extra_col) SELECT *, the_default_date_here from TABLE2