TomBarrand
Programmer
I am currently using the following SQL statement to populate a drop doewn box. I need 'GBP', 'USD' to be at the top of the list then the remainding options to appear in ascending order. How do I do this
Select Curr_ISO_Code
FROM Currency
WHERE Curr_Status = 'A'
Thanks
Select Curr_ISO_Code
FROM Currency
WHERE Curr_Status = 'A'
Thanks