I’m attempting to order by a number column in my database which has values 1-999
When I use
ORDER_BY registration_no ASC
I get….>
If you are using SQL Server:
ORDER_BY cast(registration_no as int) ASC