mysql中查询字段为null或者不为null
在mysql中,查询某字段为空时,不可用 = null,
而是 is null,不为空则是 is not null
select * from table where column isnull;
select * from table where column isnot null;
2.mysql 中从数据库2中的表2中查结果导入到数据库1中的数据表1
insert into db1.table1 (CUSTID, CUSTNAME) (select ID, NAME from bd2.table2)
2.mysql 中从数据库2中的表2中查结果导入到数据库1中的数据表1
insert into db1.table1 (CUSTID, CUSTNAME) (select ID, NAME from bd2.table2)