Hello,
Im trying to create a mysql table which will have some attributes set as DATE. However i want to change the format of the date from yyyy-mm-dd (which is the default) to dd-mm-yyyy.
The create code i am using is below and i have tried a number of differnent ways to alter the date, but nothing seems to work!!
CREATE TABLE T_BALANCE (T_LAST_DATE DATE DEFAULT 'MM-DD-YYYY');
I have searched the web abit but cant find any way of doing it... can anyone help??
Cheers,
Rich