Am trying to create a MySQL that tells
auto_increment
Where and how to start incrementing. Each time I run the code, it always tells me I have error near
auto.
Each time I removed the "=", it always work.
This is the code
CREATE TABLE staff(
id into(11) not null primary key auto_increment=001,
Names varchar(109) not null
);
What am I doing wrong