Answers for "replace a row value in sql"

SQL
1

change row in sql

UPDATE employees 
SET 
    lastname = 'Hill'
WHERE
    employeeID = 3;
Posted by: Guest on August-19-2021
3

replace string value in sql

UPDATE tableName  SET  fieldName = REPLACE(fieldName, 'fromStringValue', 'toStringValue');
Posted by: Guest on August-25-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language