Mysql
 sql >> Database >  >> RDS >> Mysql

Come fare l'equivalente del limite distinto?

Puoi usare una sottoselezione

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