I\'m not sure what should I write in the following SQL query to show \'date\' column like this: \"month-year\" - \"9-2011\".
SELECT MONTH(date) + \'.\' + YE
Yet another alternative: Select FORMAT(date,'MM.yy') ... ... group by FORMAT(date,'MM.yy')