The normal add a date column would be this
alter table account add columns (date date);
how do you add it with curdate()?
ALTER TABLE account
MODIFY COLUMN date DATE DEFAULT CURDATE();
The normal add a date column would be this
alter table account add columns (date date);
how do you add it with curdate()?
ALTER TABLE account
MODIFY COLUMN date DATE DEFAULT CURDATE();