Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Kopieren Sie Daten von einer Tabelle in eine andere UND fügen Sie zusätzliche Daten hinzu

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

oder

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