vote up 0 vote down star

By that I mean... if I have a column named "special" and rows that are marked 1 in that column would appear at the top of the results, even if the ORDER BY clause would list them elsewhere. For example, I display items by date, in descending order. Items that are marked special=1 would appear at the top of the results, regardless of their timestamp.

How can I achieve this?

flag

2 Answers

vote up 6 vote down check

You can put multiple columns in an ORDER BY clause

SELECT * from your_table ORDER BY special DESC, date_col DESC
link|flag
vote up 2 vote down

ORDER BY 'special' first (descending) and then by your other criteria.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.