功能有误的(大数据情况下):
select * from table where id not in (values);
正常的(适用大数据)
select * from table where id not in (select id from subtable)
从5.0 开始支持子查询
功能有误的(大数据情况下):
select * from table where id not in (values);
正常的(适用大数据)
select * from table where id not in (select id from subtable)
从5.0 开始支持子查询
下一篇 透视MySQL数据库之更新语句