Aug 14, 2007 #1 tommot82 Programmer Joined Aug 27, 2005 Messages 11 Location GB Is there an easy way of returning specified rows that have no index column? I basically want to create a queries that only returns rows in blocks of 20 for example. any ideas?
Is there an easy way of returning specified rows that have no index column? I basically want to create a queries that only returns rows in blocks of 20 for example. any ideas?
Aug 14, 2007 Thread starter #2 tommot82 Programmer Joined Aug 27, 2005 Messages 11 Location GB to clarify i want a rolling range of 20 after i have ordered the rows. Upvote 0 Downvote
Aug 14, 2007 #3 r937 Technical User Joined Jun 30, 2002 Messages 8,847 Location CA whether or not a table has any indexes is irrelevant to the query which you need to write to return the data that you want indexes can, however, make the query perform efficiently do a search for "paging +postgresql" or "paging +mysql" or "paging +msaccess" or whatever your database system is you're not likely to get the answer you need in the ANSI SQL forum r937.com | rudy.ca Upvote 0 Downvote
whether or not a table has any indexes is irrelevant to the query which you need to write to return the data that you want indexes can, however, make the query perform efficiently do a search for "paging +postgresql" or "paging +mysql" or "paging +msaccess" or whatever your database system is you're not likely to get the answer you need in the ANSI SQL forum r937.com | rudy.ca
Aug 14, 2007 Thread starter #4 tommot82 Programmer Joined Aug 27, 2005 Messages 11 Location GB ok thanks Upvote 0 Downvote