use timestamp instead and then you can use date_format to retrive the info in whatever order you want.
see the Date_and_time_functions area in the manual for more info but here is an example:
say your timestamp column is timesold
SELECT date_format(timesold,'%m/%d/%y %h:%i:%s') as mytime FROM mytable;