I have following table
| id | column1 | column2 | column3 | column4 | 
|---|---|---|---|---|
| 1 | 2000 | 1000 | 4000 | 3000 | 
| 2 | 6000 | 7000 | 8000 | 1000 | 
| 3 | 8000 | 10000 | 7000 | 4000 | 
I want to get max and min values from multiple columns in single row using mysql query
So in short I need following output
| max_value | min_value | 
|---|---|
| 10000 | 1000 | 
