My query result is as follows:
------------------- | id | c1 | c2 | ------------------- | 1 | 3 | 4 | ------------------- | 2 | 4 | 3 | ------------------- | 3 | 5 | 4 | -------------------
I want c2
with 3 be the first row (3 came from another query) like this:
------------------- | id | c1 | c2 | ------------------- | 2 | 4 | 3 | ------------------- | 1 | 3 | 4 | ------------------- | 3 | 5 | 4 | -------------------
But other rows must also be.