Answers for "update records in sql"

SQL
2

sql update

UPDATE `table_name`
	SET `status` = 'offline' 
		WHERE `id` = 2386;
Posted by: Guest on November-04-2021
6

sql update record

SQL> UPDATE CUSTOMERS
SET ADDRESS = 'Pune'
WHERE ID = 6;
Posted by: Guest on June-04-2020

Code answers related to "update records in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language