This is a follow up question to an earlier post. I have a column with stings & numbers that I would like to order in sequential order.
Say the customer_id is something like:
cust-1-2
, cust-10-1
, cust-2-1
, cust-1-1
, cust-3-1
I want to order it by the first number in the string, and then by the second. How can I do this?
I want my result to be ordered like:
cust-1-1
, cust-1-2
, cust-2-1
, cust-3-1
, cust-10-1