I have some data in my table below
table_1
     column_1     column_2
        1           10
        1           20
        1           30
        1           40
        1           50
        2           -10
        2           -20
        2           -30
        2           -40
        2           -50
I want to change this result to something like this
 column_1     column_2
    1           10
    2           -10
    1           20
    2           -20
    1           30
    2           -30
    1           40
    2           -40
    1           50
    2           -50
I am not sure if there is a way to do this using order by? What I am trying to show is I am trying to show (10,-10) as a group of data
 
     
     
    