Is there a method to ORDER BY a specific order. I have a table where I ORDER BY [Station ID]. I was wondering if there was a way to set the specific order of the stations.
Ex. ORDER BY [Station ID] (1234,1235,1236,1237,1239,1238).
There is probably a station table where the StationId is unique. I would add a column to this table named SortOrder. Set the data in this column to match the order you want your stations to appear in.
Then, modify your query.
If you are not already joining to the station table, then add the join. Change the order by clause to:
Order By Station.OrderBy
The benefit with this approach is that you do not need to modify a query to change the sort order (and you can probably guarantee that someone will eventually want it changed). All you'll need to do is change some data in a table to change the sort order.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.