Pass-through queries

Rob.Mills

Registered User.
Local time
Today, 00:35
Joined
Aug 29, 2002
Messages
871
I am running a pass-through query on an Oracle server. I'm trying to break down a date field to see only the month.

Is there an equivalent for Oracle to using Month([Date Field]) in Access?
 
tochar(datefields,'mm')
if you require a numeric wrap in the tonumber function
tonumber(tochar(datefields,'mm'))
 

Users who are viewing this thread

Back
Top Bottom