I'm fairly new to SQL and to this point my experience is mostly limited to Access. However, I'm trying to create a pass through query to a DB2 table and I'm having all kinds of headaches trying to set it up.
The query is very simple:
Code:
SELECT *
FROM TABLENAME.REQT
WHERE REQT_TMSP > '2006-01-01'
The REQT_TMSP field is a time stamp of when that request record was added to the table and when I view the table the format is:
MM/DD/YYYY 00:00:00 AM/PM
I've tried a ton of stuff to get this query to work but I keep getting syntax related errors. There is probably something very basic that I am missing but I can't seem to figure it out and I'm not finding much in Google that's helping.
Any ideas?