Answers for "how to update a database"

SQL
10

how to change the value of a table in sql

UPDATE employees 
SET 
    address = '1300 Carter St',
    city = 'San Jose',
    postalcode = 95125,
    region = 'CA'
WHERE
    employeeID = 3;
Posted by: Guest on March-08-2020
0

Updating database in sql

UPDATE contacts SET name = 'Wes Anderson' WHERE id = 1;
Posted by: Guest on August-04-2021
0

updating to database

1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'create) VALUES ('Nguyễn Khang Hy', 'Diễn biến:\r\n- Cuối năm 938, đ...' at line 1
Posted by: Guest on August-27-2021

Code answers related to "how to update a database"

Code answers related to "SQL"

Browse Popular Code Answers by Language