这个 mysql 嵌套查询错哪里了?
"SELECTid,subjectId,title,content,addTime,author,(SELECTtop1smallImageFROMpmo_imagesW...
"SELECT id,subjectId,title,content,addTime,author,(SELECT top 1 smallImage FROM pmo_images WHERE pmo_images.topicId = pmo_topic.id) AS smallImage FROM pmo_topic WHERE subjectId = ".$subjectId." ORDER BY addTime DESC LIMIT ".($pageIndex*$pageSize).",".$pageSize
这个嵌套查询错哪里了?
已经解决了,原来是mysql 不支持 top ,我改成 LIMIT 就运行成功了。
如下面:
"SELECT id,subjectId,title,content,addTime,author,(SELECT smallImage FROM pmo_images WHERE pmo_images.topicId = pmo_topic.id LIMIT 1) AS smallImage FROM pmo_topic WHERE subjectId = ".$subjectId." ORDER BY addTime DESC LIMIT ".($pageIndex*$pageSize).",".$pageSize 展开
这个嵌套查询错哪里了?
已经解决了,原来是mysql 不支持 top ,我改成 LIMIT 就运行成功了。
如下面:
"SELECT id,subjectId,title,content,addTime,author,(SELECT smallImage FROM pmo_images WHERE pmo_images.topicId = pmo_topic.id LIMIT 1) AS smallImage FROM pmo_topic WHERE subjectId = ".$subjectId." ORDER BY addTime DESC LIMIT ".($pageIndex*$pageSize).",".$pageSize 展开
2016-12-29 · 知道合伙人互联网行家
关注
展开全部
sql语句里有嵌套查询,如:
select sname from student where sno in
select sno from sc where cno='2';
这样得查询可以实现一条指令对两个表操作
可在php里我用这个命令来对mysql操作时显示sql语句错误!!
不支持,mysql不支持嵌套查询,不支持分布式查询,
不许有个中间转换,
比如你的将 select sno from sc where cno='2';的**结果**存起来,
然后select sname from student where sno in(**结果**,**结果**2)
只能这样。但支持join on。
拼写错误||上面的不许有个中间转换改为: 必须有个中间转换
mysql不支持嵌套查询,分开来写吧
但是mysql支持join语句where用括号括起来!!!!
select sname from student where sno in
select sno from sc where cno='2';
这样得查询可以实现一条指令对两个表操作
可在php里我用这个命令来对mysql操作时显示sql语句错误!!
不支持,mysql不支持嵌套查询,不支持分布式查询,
不许有个中间转换,
比如你的将 select sno from sc where cno='2';的**结果**存起来,
然后select sname from student where sno in(**结果**,**结果**2)
只能这样。但支持join on。
拼写错误||上面的不许有个中间转换改为: 必须有个中间转换
mysql不支持嵌套查询,分开来写吧
但是mysql支持join语句where用括号括起来!!!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询