telc
09-27-2002, 08:52 PM
I am trying to format the sql but I can't because joindate, is a 'int' field
mysql> select DATE_FORMAT(joindate, '%m.%d.%Y') AS joindate from user limit 0,1;
+----------+
| joindate |
+----------+
| NULL |
Why would the unix timestamp be stored in a 'int' field?
mysql> select DATE_FORMAT(joindate, '%m.%d.%Y') AS joindate from user limit 0,1;
+----------+
| joindate |
+----------+
| NULL |
Why would the unix timestamp be stored in a 'int' field?