I'm using the ORDER BY function as per below to order a simple query by customer id (it was originally party age but that didn't seem to work so I changed it to see if it was the syntax or not).
SELECT customer_id, customer_name, party_age
FROM customer
ORDER BY customer_id
The report returns no errors, but when I go to view the report it is not ordered at all. I have tried this using numbers as well (ORDER BY x).
Anyone guide me in the right direction?
EDIT: Customer_id is VARCHAR2(3) with 10 sample data fields ranging from 001 to 010. I have tried converting to an int as suggested below but the results are still the same.
ORDER BY function not working in Oracle-- that's quite a statement, you know. – Andrew Logvinov Dec 11 '12 at 15:58select value from v$nls_parameters where parameter = 'NLS_SORT';– Ben Dec 11 '12 at 16:00order by to_number(customer_id)) – DazzaL Dec 11 '12 at 16:00