免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2275 | 回复: 3
打印 上一主题 下一主题

mysql嵌套查询问题 [复制链接]

论坛徽章:
1
白羊座
日期:2014-11-19 14:18:59
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-11-23 17:31 |只看该作者 |倒序浏览
mysql> select * from a where domain not in (select domain from b);

ERROR 1064: You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select domain from b)' at line 1


这个查询哪里错了呀?

如果改成多表联合查询怎么改。

[ 本帖最后由 鸿钧 于 2009-11-23 17:37 编辑 ]

论坛徽章:
1
白羊座
日期:2014-11-19 14:18:59
2 [报告]
发表于 2009-11-23 17:35 |只看该作者
难道是我mysql版本的问题。

[root@localhost ~]# mysql -V
mysql  Ver 12.22 Distrib 4.0.27, for pc-linux-gnu (i686)

论坛徽章:
0
3 [报告]
发表于 2009-11-23 17:53 |只看该作者
Try:
select * from a where domain not exists (select 1 from b where domian=a.domain);

论坛徽章:
9
每日论坛发贴之星
日期:2016-01-04 06:20:00数据库技术版块每日发帖之星
日期:2016-01-04 06:20:00每日论坛发贴之星
日期:2016-01-04 06:20:00数据库技术版块每日发帖之星
日期:2016-01-04 06:20:00IT运维版块每日发帖之星
日期:2016-01-04 06:20:00IT运维版块每日发帖之星
日期:2016-01-04 06:20:00综合交流区版块每日发帖之星
日期:2016-01-04 06:20:00综合交流区版块每日发帖之星
日期:2016-01-04 06:20:00数据库技术版块每周发帖之星
日期:2016-03-07 16:30:25
4 [报告]
发表于 2009-11-23 22:07 |只看该作者
5.0.22没问题,也许是4.0还没支持 not in嵌套子查询吧吧

mysql> create table a (domain int);
Query OK, 0 rows affected (0.01 sec)

mysql> create table b (domain int);
Query OK, 0 rows affected (0.01 sec)

mysql> insert into a values(1),(2);
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0

mysql> insert into b values(1);
Query OK, 1 row affected (0.00 sec)

mysql> select * from a where domain not in (select domain from b);
+--------+
| domain |
+--------+
|      2 |
+--------+
1 row in set (0.00 sec)


表连接查询的话:
select a.* from a left join b on a.domain=b.domain where b.primary_key is null;
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP