I have a little weird question. I have 2 tables in my application, regions and schools. Schools has a column, in which region it is situated.
I want to do a SELECT statement to join these tables together with LIMIT. But LIMIT can't split a group of REGION-SCHOOLS.
Example
REGIONS
ID name of region
1 Moravia
2 Czech
SCHOOLS
ID region school
1 1 VSB
2 1 SPS Kratochvilova
3 1 T.G. Masaryka
4 2 ZS Praha
5 2 CVUT
And now when I use JOIN to connect these tables together I get
region school
Moravia VSB
Moravia SPS Kratochvilova
Moravia T.G. Masaryka
Czech ZS Praha
Czech CVUT
But when I use LIMIT 4 to pagination, I have part of region czech on first page, and next part on second page.
Is there some solution how to use LIMIT to not split these groups?
In my case, in one region will be up to 5 schools, maybee sometimes 6, but very rarely.
LIMIT 4? Cut that region in half, or list all 6 schools instead? – biziclop Sep 22 '12 at 20:16