Mysql
 sql >> Base de données >  >> RDS >> Mysql

MySQL Insert Select - Champs NOT NULL

Utilisez simplement un WHERE clause :

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