0

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

Shidersz
  • 16,846
  • 2
  • 23
  • 48

0 Answers0