I've got the following part of a query:
STR_TO_DATE(CONCAT(g.Year,',',g.Month,',',g.Day),'%Y,%m,%d') AS HelpDate
g is a table of course. I know the values of g.Year, g.Month and g.Day all work fine because if I take out the STR_TO_DATE call and just use:
CONCAT(g.Year,',',g.Month,',',g.Day) AS HelpDate
it works fine. For some reason mysql breaks with the addition of the STR_TO_DATE. As far as I can tell this should work. I even tried hard coding the date just to force it to make sure I wasn't crazy:
STR_TO_DATE('2011,9,2','%Y,%m,%d') AS HelpDate
That didn't work either
Edit:
Ok. So the reason STR_TO_DATE wouldn't work at all for me was because the server was running MySQL 4.0. I've since moved the database to a MySQL5 server. Now, here's my problem. STR_TO_DATE only works as long as I'm not trying to concatenate table references. For example, both of these work:
STR_TO_DATE('2011,9,2','%Y,%m,%d') AS HelpDate
STR_TO_DATE(CONCAT('2011',',','9',',','2'),'%Y,%m,%d') AS HelpDate
However, this still does not:
STR_TO_DATE(CONCAT(g.Year,',',g.Month,',',g.Day),'%Y,%m,%d') AS HelpDate
I get this error:
#1305 - FUNCTION db380975735.STR_TO_DATE does not exist
db38097573 is the name of the database