Collections:
Updating Values in a Table in MySQL
How To Update Values in a Table in MySQL?
✍: FYIcenter.com
If you want to update some values in one row or multiple rows in a table, you can use the UPDATE statement. The tutorial script below shows a good example:
mysql> UPDATE fyi_links SET counts = 999, notes = 'Good.' WHERE id = 101; Query OK, 1 row affected (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 0 mysql> SELECT id, url, notes, counts, DATE(created) FROM fyi_links WHERE id = 101; +-----+-------------------+-------+--------+---------------+ | id | url | notes | counts | DATE(created) | +-----+-------------------+-------+--------+---------------+ | 101 | dev.fyicenter.com | Good. | 999 | 2006-04-30 | +-----+-------------------+-------+--------+---------------+ 1 row in set (0.00 sec)
⇒ Update Column Values on Multiple Rows in MySQL
⇐ Insert Multiple Rows with 1 INSERT Statement in MySQL
2018-01-13, 2567🔥, 0💬
Popular Posts:
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
What Are the Basic Features of a Trigger in SQL Server? Since a SQL Server trigger is a really an ev...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
How to convert a JSON (JavaScript Object Notation) quoted string into a regular character string usi...