Every page on my application will display 1000 records and they are only needed on that page.
Is it more efficient to have one huge table with an additional 'page id' column or to have a new table for each page?
I imagine accessing data from a single small table would be easier than a huge one but it will make the database a bit of a mess.
Any thoughts?