sql >> Base de Datos >  >> RDS >> Mysql

Copiar datos de una tabla a otra Y agregar datos adicionales

 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