Published
- 1 min read
update all rows mysql
The solution for this is noted below
update all rows mysql
Solution
UPDATE tableName SET columnName = yourValue;
#to update multiple columns:
UPDATE tableName SET column1 = value1, column2 = value2; #and so on
Try other methods by searching on the site. That is if this doesn’t work