OK, this seems pretty basic to me but I'm having a hell of a time. I'm new to creating passthrough queries and I can't seem to get the date formatted right in the WHERE clause. I'm getting all kinds of errors no matter what I try.
The query is:
When I look at the table, the REQT_TMSP is a time stamp formatted like:
MM/DD/YYYY 00:00:00 AM/PM
I've tried all kinds of things that I've found with Google but everything I try returns an error.
This seems like it should be so simple but apparently there is something escaping me.
The query is:
Code:
SELECT *
FROM TABLENAME.REQT
WHERE REQT_TMSP > '2006-01-01'
When I look at the table, the REQT_TMSP is a time stamp formatted like:
MM/DD/YYYY 00:00:00 AM/PM
I've tried all kinds of things that I've found with Google but everything I try returns an error.
This seems like it should be so simple but apparently there is something escaping me.