Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie macht man das Äquivalent von Limit Distinct?

Sie können eine Unterauswahl verwenden

select * from table where client_id in 
(select distinct client_id from table order by client_id limit 5)