bjverde / sysgen

:elephant: SysGen is crud scaffolding. Generates PHP code using FormDin FrameWork
GNU General Public License v3.0
20 stars 10 forks source link

Postgresql with sql pagination #107

Closed bjverde closed 4 years ago

bjverde commented 4 years ago

LIMIT and OFFSET work PostgreSQL >= 9.4

See documentation

See on code

bjverde commented 4 years ago
SELECT * FROM pessoal.tb_apoio order by cd_apoio LIMIT 5 OFFSET 10 ;

LIMIT qtd row OFFSET = row start - 1