Collections:
Update Column Values on Multiple Rows in MySQL
How To Update Column Values on Multiple Rows in MySQL?
✍: FYIcenter.com
If the WHERE clause in an UPDATE matches multiple rows, the SET clause will be applied to all matched rows. This rule allows you to update values on multiple rows in a single UPDATE statement. Here is a good example:
mysql> UPDATE fyi_links SET counts = 9, notes = 'Wrong' WHERE id >= 500; Query OK, 5 rows affected (0.00 sec) Rows matched: 5 Changed: 5 Warnings: 0 mysql> SELECT id, url, notes, counts, DATE(created) FROM fyi_links WHERE id >= 500; +-----+-------------------+-------+--------+---------------+ | id | url | notes | counts | DATE(created) | +-----+-------------------+-------+--------+---------------+ | 601 | moc.retneciyf.ved | Wrong | 9 | 2006-04-30 | | 602 | moc.retneciyf.abd | Wrong | 9 | 2006-08-31 | | 603 | moc.retneciyf.aqs | Wrong | 9 | 2006-08-31 | | 610 | | Wrong | 9 | 2006-08-31 | | 500 | moc.retneciyf.www | Wrong | 9 | 2006-08-31 | +-----+-------------------+-------+--------+---------------+ 5 rows in set (0.00 sec)
This statement updated 5 rows with the same new values on all 5 rows.
⇒ Use Existing Column Values in the SET Clause in MySQL
⇐ Updating Values in a Table in MySQL
2018-01-13, 2309🔥, 0💬
Popular Posts:
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...
Where to find answers to frequently asked questions on Storage Engines: MyISAM, InnoDB and BDB in My...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...