Sort Hex value
SowmyRajJan 31 2009 — edited Jan 31 2009Hi,
I've got a varchar2-column that contains a hexadecimal number (0-9, A-F).
Using "order by", Oracle sorts it like this:
A10
BFF
010
900
I would like it to be sorted in the natural order, like this:
010
900
A10
BFF
Any ideas?