Answer the question
In order to leave comments, you need to log in
Adding a number to the table using INSERT writes an error?
There is a reputation column, I want to add numbers there, but something doesn't work.
Writing:
INSERT INTO users (reputation) VALUES
(500),
(324);
INSERT INTO users (reputation) VALUES WHERE id = 1
(500),
(324);
Answer the question
In order to leave comments, you need to log in
UPDATE needed hereUPDATE users SET reputation = 500 WHERE id = 1;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question