How to sort out data from a row

Hello koder
I want to know that how to sort data from a row.
I am using MySQL database and in that a single row contain 4 date columns I want to sort out as month vise . I want the month which comes first should be shown first than second and so on.
Is it possible to do this?
Please help me in this :pray::pray:
Thanks

Cam u provide a sample table structure , sorting rows is not common functionality as far as i know

@Deepanshu_Arya

Out of these columns I want to sort these dates .
Please help me

use order by clause
ORDER BY MONTH(Date),DAY(DATE)

more info