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

MySQL Insert Select - Campos NO NULOS

Simplemente use un WHERE cláusula:

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