I have this SQL to get some info from my table:
Code:
SELECT * FROM PSMANAGER_INFORMATION
WHERE (PSMGRS_SQUADNO BETWEEN '03100' AND '03149')
OR (PSMGRS_SQUADNO = '03901')
ORDER BY PSMGRS_SQUADNO
[tt]
PSMGRS_SQUADNO PSMGRS_FULLNAME
03100 David R.
03101 William L.
03102 Patricia G.
03103 Christine E.
03901 John R.[/tt]
How can I modify my SQL to get the last record (03901 John R.) first? (I do know it is always 03901)
Like this:
[tt]
PSMGRS_SQUADNO PSMGRS_FULLNAME
03901 John R.
03100 David R.
03101 William L.
03102 Patricia G.
03103 Christine E.
[/tt]
Have fun.
---- Andy