Nope. We're stuck with the systems we got here. It just might be easier to do this on the page instead of the MySQL Server Side.
I think its rather stupid that MySQL doesn't accept alternative date formats, rather than the YYYY-MM-DD HH:MM:SS. I mean, I'm sorry, MySQL rules, but it sucks that they don't have the capability to do different date and time formats.
I tried this... but still stuck with the same problem:
SELECT LEFT(d,INSTR(d," ") - 1) AS "date", RIGHT(d,INSTR(d," ")) AS "time", DATE_FORMAT(LEFT(d,INSTR(d," ") - 1),"%Y") AS "year" FROM dah
+-----------+------------+------+
| date | time | year |
+-----------+------------+------+
| 8/19/2002 | 8:52:32 AM | NULL |
+-----------+------------+------+
Scott