SQL code:
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 Says This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery
SQL code:
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 Says This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery