This should be an easy one.
Scenario:
a column can contain 1 of 4 codes "R" "T" "C" "P"
with a one sql select statement how can I order first all "R"s, then "T"s, then "C"s, then "P"s.
when using sql to an Access DB the following Order by works:
ORDER BY
CSFOCP.FORM.TYPE = 'R',
CSFOCP.FORM.TYPE = 'T',
CSFOCP.FORM.TYPE = 'C',
CSFOCP.FORM.TYPE = 'P'
but it doesn't work in Oracle.
Thanks
jim