Unusual ORDER BY Statement
I am attemtping an order by statement that is a bit of a challenge for me. Any help is appreciated.
I have the following data:
REPAIR_ITEM_ID
-----------------
C130
C135
C135A
AC130A
AC130H
KC135
KC135A
KC135D
NAC130H
NKC135A
I'd like to generate a query that will allow me to order these items by their family. Such as:
REPAIR_ITEM_ID
-----------------
C130
AC130A
AC130H
NAC130H
C135
C135A
KC135
KC135A
KC135D
NKC135A Any ideas?