I’m learning Base and I’m wondering how to do this. I have a table (called tblSpend) with a Date field (Field Type DATE[ DATE ]) and when I call this field up in a query it displays results like 12/06/23. If I use MONTH( [tblSpend].[Date] ) in the field name in the query, this produces a number, like 06 for June.
The SQL that produces a number is this:
SELECT “SpendID”, MONTH( “tblSpend”.“Date” ) FROM “tblSpend”
Is there code I can put in the field name position in the query to produce the result as text, rather than a number? i.e. in this example, I want to produce the result June, rather than 06. Or what change could I make to the SQL above to achieve this?
Thanks.