updating valuesin my sql code example

Example 1: how to update an attribute in MySQL

UPDATE table_name
SET variable = 'changed field', variable = 'another changed field'
WHERE firstline_name = 1;

Example 2: mysql update query

UPDATE table_name SET field1 = 'value 1', field2 = 'value 2'
WHERE field3 = 'value 3'

Example 3: php mysql update all rows in table new values

$idresult = $conn->query("SELECT id FROM pictures");

while ($row = $idresult->fetch_assoc()){
   mysqli_query($conn, "UPDATE pictures SET UniqueKey = '$UniqueKey' WHERE id = " . $row['id'];
}

Tags:

Php Example