Below is a simple example of what I am talking about. (Earlier today I was creating a query to show the parts of a date from the Now() function).
SELECT CurrentTime, MonthName, MonthID, DayNumber, Year FROM
(SELECT distinct now() AS CurrentTime,
monthname(month(now())) AS MonthName,
month(now()) AS MonthID,
day(now()) AS DayNumber,
year(now()) AS Year
FROM Institutions)
{ Note that Institutions is one of my table names and that you will need to substitute one of your own. }