Hello,
I've search the threads but could not find a solution to a date conversion issue I'm having. I'm trying to convert a string value to a date. The string is setup as:
fieldnme
2007-09-24 00:00:00.000
My sql is:
Select fieldnme, cdate(format(fieldnme, 'yyyy-mm-dd') as PostedDate
From Table;
I receive an error (#error) in the PostedDate field. I've tried adding double quotes around the format as well but it still produces the same error.
Any help would be appreciated.
I've search the threads but could not find a solution to a date conversion issue I'm having. I'm trying to convert a string value to a date. The string is setup as:
fieldnme
2007-09-24 00:00:00.000
My sql is:
Select fieldnme, cdate(format(fieldnme, 'yyyy-mm-dd') as PostedDate
From Table;
I receive an error (#error) in the PostedDate field. I've tried adding double quotes around the format as well but it still produces the same error.
Any help would be appreciated.