You could add a field to it and update it:
alter table aaa add column ts timestamp;
update table aaa set ts=cast(concat(year,'-',month,'-',date) as timestamp);
or something like that.
If you're running mysql with the ansi switch on, you'd do it this way:
update table aaa set ts=cast(year||'-'||month||'-'||date) as timestamp);