Sep 25, 2000 #1 deucesp97 MIS Sep 14, 2000 13 US I am using QMF to convert a character type into a date type. Is this possible, if so how? I have tried a few things but the recent is SELECT DATE(ROUTE_DT) FROM INVOICE; The error message I am receiving is the datetime value is invalid. [sig][/sig]
I am using QMF to convert a character type into a date type. Is this possible, if so how? I have tried a few things but the recent is SELECT DATE(ROUTE_DT) FROM INVOICE; The error message I am receiving is the datetime value is invalid. [sig][/sig]
Sep 25, 2000 #2 MalcolmW Programmer Aug 12, 1999 1,115 CA SELECT ROUTE_DT FROM INVOICE WHERE ISDATE(ROUTE_DT) = 0 will often tell you what dates are giving you problems. [sig][/sig] Upvote 0 Downvote
SELECT ROUTE_DT FROM INVOICE WHERE ISDATE(ROUTE_DT) = 0 will often tell you what dates are giving you problems. [sig][/sig]