Hi,
I would like to move a row to the bottom of the result set given a matched condition.
Database
+-------+------------+
|Symbol | Percentage |
|-------|------------|
|VG | 20 |
|-------|------------|
|CASH | 20 |
|-------|------------|
|GOOG | 60 |
+-------+------------+
ex:
SELECT * FROM TableName -SEND TO END OF RESULT SET- WHERE symbol = 'CASH'
result set:
GOOG
VG
CASH
To clarify my original question...
I need to write an exception for an ORDER BY
statement. To put the query into plain english - SELECT
an entire row, ordering by a timestamp, except if the symbol is "CASH"