Collections:
Updating Existing Rows in MySQL
How To Update Existing Rows in a Table in MySQL?
✍: FYIcenter.com
Updating existing rows in a table requires to run the UPDATE statement with a WHERE clause to identify the row. The following sample script updates one row with two new values:
<?php
include "mysql_connection.php";
$sql = "UPDATE fyi_links SET notes='Nice site.', counts=8"
. " WHERE id = 102";
if (mysql_query($sql, $con)) {
print(mysql_affected_rows() . " rows updated.\n");
} else {
print("SQL statement failed.\n");
}
mysql_close($con);
?>
If you run this script, you will get something like this:
1 rows updated.
⇒ Deleting Existing Rows in MySQL
⇐ Breaking Query Output into Pages in MySQL
2023-09-10, 2517🔥, 1💬
Popular Posts:
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...