There are a few issues, you are missing the data type on my user_id field. But if you want to set the AUTO_INCREMENT to start at a specific value, then you need to use ALTER TABLE:
CREATE TABLE users
(
user_id int not null AUTO_INCREMENT PRIMARY KEY,
first_name varchar(20),
last_name varchar(20),
email_address varchar(50),
facebook_url varchar(50),
bio varchar(20)
);
This will create your table but if you want to set to start value of the Auto_Increment from the MySql Docs:
To change the value of the AUTO_INCREMENT counter to be used for new
rows, do this:
ALTER TABLE t2 AUTO_INCREMENT = value;
Add the following line:
ALTER TABLE users AUTO_INCREMENT = 10000;
Test to be sure the values are working:
insert into users (first_name, last_name) values
('test1', 'test'),
('test2', 'test'),
('test3', 'test');
Or if you do not want to use ALTER TABLE you can consolidate into the CREATE TABLE statement with:
CREATE TABLE users
(
user_id int not null AUTO_INCREMENT PRIMARY KEY,
first_name varchar(20),
last_name varchar(20),
email_address varchar(50),
facebook_url varchar(50),
bio varchar(20)
)AUTO_INCREMENT = 10000;