I would like to create a new column in my database table with the current date as the column name, e.g. "2014-10-11 01:57:46" or like this "11 10 2014". I tried this:
ALTER TABLE 'table_name' ADD 'NOW()' VARCHAR(255);
ALTER TABLE 'table_name' ADD 'SELECT NOW()' VARCHAR(255);
ALTER TABLE 'table_name' ADD 'DATE_FORMAT(NOW(), '%d %m %Y')' VARCHAR(255);
SET @mydate:=DATE_FORMAT(NOW(), '%d %m %Y'); ALTER TABLE 'table_name' ADD @mydate VARCHAR(255);
All my attempts create a column but the name is not the current date. Could you be so kind to point me what I am doing wrong?