Jump to content

Exibição de registro personalizados


Vinny

Recommended Posts

Olha que não. O primeiro número é o offset e o segundo número é o limite. Ou seja:

SELECT campo FROM tabela LIMIT 0,20;
SELECT campo FROM tabela LIMIT 20,20;

Alternativamente, se quiseres que a query seja mais fácil de let/perceber:

SELECT campo FROM tabela LIMIT 20;
SELECT campo FROM tabela LIMIT 20 OFFSET 20;
Edited by KTachyon
  • Vote 1

“There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.”

-- Tony Hoare

Link to comment
Share on other sites

Olha que não. O primeiro número é o offset e o segundo número é o limite. Ou seja:

SELECT campo FROM tabela LIMIT 0,20;
SELECT campo FROM tabela LIMIT 20,20;

Alternativamente, se quiseres que a query seja mais fácil de let/perceber:

SELECT campo FROM tabela LIMIT 20;
SELECT campo FROM tabela LIMIT 20 OFFSET 20;

Tens razão.

Pensei que tinha colocado um Order By... 😕

"Medir o progresso de um programa por linhas de código é como medir o processo de montagem de um avião pelo peso."

Bill Gates

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.