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

MySQL Insert Select - NICHT NULL-Felder

Verwenden Sie einfach ein WHERE Klausel:

insert ignore into table2(description)
select description from table1
where description <> '' and description is not null