Sep 25, 2000 #1 deucesp97 MIS Joined Sep 14, 2000 Messages 13 Location 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 Joined Aug 12, 1999 Messages 1,115 Location 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]