I have run into another error that I can't figure out surrounding a datepart query setup. The clause is:
WHERE (Originating_Date) < (Select min(datepart(m,[accrual_date])) from corp)
I'm trying to select all entries where the originating_date is before the month of the accrual_date.
When I run the query I get a parameter box asking for me to enter 'm'.
Any help is appreciated.
WHERE (Originating_Date) < (Select min(datepart(m,[accrual_date])) from corp)
I'm trying to select all entries where the originating_date is before the month of the accrual_date.
When I run the query I get a parameter box asking for me to enter 'm'.
Any help is appreciated.