有一句逻辑正确测试数据也正确的MySQL语句运行没有结果,这是为什么?

这条语句如下:

select *,(select username from `user` where uid=(select worker from `work` where workname=(select jing from `place` where place=orders.place) and date=curdate())),(select username from `user` where uid=(select worker from `work` where workname=(select flower from `dorm` where dormset=orders.dormset and dormnumber=orders.dormnumber) and date=curdate())),(select username from `user` where uid=(select worker from `work` where workname=(select leaf from `dorm` where dormset=orders.dormset and dormnumber=orders.dormnumber) and date=curdate())) from `orders` where dealdate=curdate();

运行结果如下:
在NaviCat中的运行结果:
在NaviCat中的运行结果
Python返回的结果(那个数字是影响行数):
Python返回的结果(那个数字是影响行数)

各数据表的数据如下:
dorm表:
dorm
orders表:
orders
place表:
place
user表:
user
work表:
work
以及今天是2016年2月22号。

请问为什么没有数据?以及这个查询最好写成什么样子?

以上是 有一句逻辑正确测试数据也正确的MySQL语句运行没有结果,这是为什么? 的全部内容, 来源链接: utcz.com/a/162953.html

回到顶部