Answer the question
In order to leave comments, you need to log in
SQL "Help" INSERT INTO when adding ID with AUTO_INCREMENT?
You need to create a simple table.
Writing:
CREATE TABLE users (
id INT AUTO_INCREMENT,
PRIMARY KEY(id),
names_list VARCHAR(60)
);
DESC users;I understand that the table is created with AUTO_INCREMENT.
INSERT INTO users VALUES
('gfhjkl'),
('dfghjkl');
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question