EDIT; there is no error, and everything else works, but the update I just do not get +1 :( nothing is updated. Maybe because I use the wrong quotation marks?
I am searching on the Internet, some people use the following type of query
UPDATE `attempts` SET `fails` = fails+1 WHERE id='3'"
I'm confused because others use
UPDATE `attempts` SET `fails` = `fails` +1 WHERE id='3'"
and
UPDATE `attempts` SET `fails` = +1 WHERE id='3'"
Which form is correct when pasted into MySQL, and I mean the characters used as well. Some use characters that some others don't, and that bothers me. These questions are about characters and the correct form when inserting data
You just need to know what the correct form is, when to use `` when '' and when "" only in this request