I am trying to create a MySQL table as follows:
CREATE TABLE customers (
-> id INT NOT NULL AUTO_INCREMENT,
-> join_date DATE DEFAULT 'not CI',
-> email_address VARCHAR(255),
-> PRIMARY KEY (id)
-> );
However, I get the following error message:
ERROR 1067 (42000): Invalid default value for 'join_date'
How do I create a table with the date field default value as "not CI"?