当前位置:Gxlcms > PHP教程 > Mysql如何查询没有订单的用户?

Mysql如何查询没有订单的用户?

时间:2021-07-01 10:21:17 帮助过:2人阅读

假设有一个Order表和一个User表, 需要在一条语句里面查询所有没有订单的用户应该怎么写?

回复内容:

假设有一个Order表和一个User表, 需要在一条语句里面查询所有没有订单的用户应该怎么写?

至少两个表的字段要给出吧,他们之间的关系要说清楚吧……

select userid from user where userid not in (select distinct userid from order)
大致这样

人气教程排行