How do I correct the error from MySQL \'you can only have one auto increment column\'.
CREATE TABLE book ( id INT AUTO_INCREMENT NOT NULL, accepted_ter
CREATE TABLE book ( id INT AUTO_INCREMENT primary key NOT NULL, accepted_terms BIT(1) NOT NULL, accepted_privacy BIT(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1