首页 > 数据库 > MySQL > 正文

MySQL 5.0 Not in 注意

2024-07-24 12:57:40
字体:
来源:转载
供稿:网友

功能有误的(大数据情况下):
select * from table where id not in (values);

正常的(适用大数据)

select * from table where id not in (select id from subtable)

从5.0 开始支持子查询


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表