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

Come verificare se il limite è stato utilizzato in mysql?

Potresti fare

Select *
From employee
where fired=0
limit 10+1

In modo che:

0-10 values returned: no limit was reached
11 values returned: Limit was reached

E poi usa solo i primi 10 valori che vengono restituiti.

aggiornamento La risposta di Raymond è mooolto meglio della mia!