I need to get distinct persian month from the timestamp field in mysql table. this is my query:
select distinct month(startTime) from times where subset_id='$subset_id' ORDER BY `id` DESC
but it returns a distinct Gregorian year and I can`t use it... how can I solve this?