select time_by_day.month_of_year as c0, time_by_day.the_month as c1 from time_by_day as time_by_day where (time_by_day.quarter = 'Q2' and time_by_day.the_year = 1997) and UPPER(time_by_day.the_month) = UPPER('April') group by time_by_day.month_of_year, time_by_day.the_month order by time_by_day.month_of_year ASC NULLS LAST; |