11.06.2016, 11:22
Just like Vince said, it means it will only update the first row it finds.
I'll give an example using a picture:
This will set the level of the first 2 to 500.
This will set the level of all of the rows that have John as name.
I'll give an example using a picture:
Code:
UPDATE table_name SET Level = 500 WHERE Name = 'John' LIMIT 2
Code:
UPDATE table_name SET Level = 100 WHERE Name = 'John'