how to use order by in alphanumeric column in oracle
问题 In my table one of column i have a value like below Y-1 Y-2 Y-3 Y-4 Y-5 Y-6 Y-7 Y-8 Y-9 Y-10 Y-11 Y-12 Y-13 Y-14 when i am order by this column its working fine if the row has value up to Y-9 other wise my result is wrong like below. Y-1 Y-10 Y-11 Y-12 Y-13 Y-14 Y-2 Y-3 Y-4 Y-5 Y-6 Y-7 Y-8 Y-9 But i want the output like below Y-1 Y-2 Y-3 Y-4 Y-5 Y-6 Y-7 Y-8 Y-9 Y-10 Y-11 Y-12 Y-13 Y-14 How to acheive the above result.i am using oracle database.Any help will be greatly appreciated!!!!! 回答1: