如何解决选择查询中的限制?

时间:2018-10-31 18:29:14

标签: mysql

SQL代码:

select
    car_id, user_id 
from
    orders o
left join
    users u on u.id =  o.user_id
where
    o.user_id in (select id from users limit 3)

Mysql说This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery

0 个答案:

没有答案