Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to find the quarter in which a particular date comes.

currently I am doing this with an if /else structure like below:

select if(month(s_date) < 4,Q1,if(month(s_date) >3 && month(s_date) < 7,Q2,.....)

Am I doing this right or there is another simple way to do this?

share|improve this question

1 Answer

up vote 4 down vote accepted

No need to calculate it manually . Mysql already have function QUARTER() which returns quarter in which particular date comes

Below will make it simple :

SELECT QUARTER(s_date) as quarter FROM tablename
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.