ANY dialect question:
How to order rows in a predefined pattern?
The idea is to always have predefined rows at the beginning of a record set.
For example if you have a column:
id
--------
article_1
article_2
article_3
How can I construct a query to return the rows in the order article_2, article_1, article_3?
|