I have a table emphours which has two fields, month and year. The month is stored as "January", "February"... The year is stored as a 4 digit numerical value.
I want to use the two fields and make a date from them so I can use it in a where clause of a query similar to below.
What is an easy way to convert the two fields into a date so I can use it in the query?
TIA, Mark
I want to use the two fields and make a date from them so I can use it in a where clause of a query similar to below.
Code:
where emphours.month+emphours.year between dBegDate and dEndDate
TIA, Mark