文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>mysql的关联子查询

mysql的关联子查询

时间:2010-04-14  来源:szuwcp

user表如下:id  name  street  sex  age  记录用户信息 pay表如下:no  aid    amount               记录用户的费用 其中id和no是主键,aid是外键
select * from user where id = (select aid from pay where no=3); 该子查询只返回一行,故不会报错。 如果子查询返回多行,则报错,比如: select * from user where id = (select aid from pay where no<4); 报错如下:ERROR 1242 (21000): Subquery returns more than 1 row
改正办法:
使用any select * from user where id = any (select aid from pay where no<4);
使用 in select * from user where id in  (select aid from pay where no<4);
使用 exists select * from user where exists  (select * from pay where pay.aid=user.id and  no<4);
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载