|
I have data in my table something like this <-3 <-2 <-1 0 1 2 3 >3 >4 11,12,6,9,-4,-6,-9, <-7 etc so what i want is a query that will give me the result some thing like this -9,<-7,-6,-4, <-3 <-2 <-1 0 1 2 3,>3,>4,6,9,11,12...
(comments are locked)
|
|
Something like this should work:
You can use the REPLACE function to strip out the greater than and less than signs and then convert to an integer.
(comments are locked)
|


can you reformat your question, i can't tell which is the column which is the row. It will be even better if you can post the table DDL and sample data in terms of INSERT INTO ....