This should show you how to use the different date functions...
someTable
id (autonumber)
toDate (date/time)
SELECT id, toDate, (Format(toDate,"dddd") & ', ' & Format(toDate,"mmmm") & ' ' & DatePart("d", toDate) & ', ' & DatePart("yyyy", toDate)) as formattedDate
FROM someTable;
HtH,
Rob...