If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > mysql_query: order results by row

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-18-03, 09:57
orange orange is offline
Registered User
 
Join Date: Mar 2002
Posts: 22
mysql_query: order results by row

Hi there;

Got a little problem I can't work out.
Want to select all the row's from my table, but order the results starting at a particular row [which is defined by a user]. i.e.

Rows in table
1
2
3
4
5
6

Want to select all rows but starting from row 5 giving me:
5
6
1
2
3
4

Thanks in advance
Reply With Quote
  #2 (permalink)  
Old 11-19-03, 10:18
bstjean bstjean is offline
Registered User
 
Join Date: Sep 2002
Location: Montreal, Canada
Posts: 219
Re: mysql_query: order results by row

Quote:
Originally posted by orange
Hi there;

Got a little problem I can't work out.
Want to select all the row's from my table, but order the results starting at a particular row [which is defined by a user]. i.e.

Rows in table
1
2
3
4
5
6

Want to select all rows but starting from row 5 giving me:
5
6
1
2
3
4

Thanks in advance
SELECT columnName, IF(columnName >= start, columnName - start, columnName + start) as myorder
FROM tableName
ORDER BY myorder

In your example, just replace start with 5 in the above query

SELECT columnName, IF(columnName >= 5, columnName - 5, columnName + 5) as myorder
FROM tableName
ORDER BY myorder

Hope this helps.
Reply With Quote
  #3 (permalink)  
Old 11-22-03, 10:55
orange orange is offline
Registered User
 
Join Date: Mar 2002
Posts: 22
Hi there,

Thanks for the tip, have actually done a work around in PHP that works great for me!!

Thanks any-way...
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On