Acreate table foo (id int serial primary key auto, name varchar(255));
Bcreate table foo (id int auto_increment primary key, name varchar(255));
Ccreate table foo (id auto_increment primary key, name varchar(255));
Dcreate table foo (id serial primary key, name varchar(255));
ENone of these above