Answers for "mysql update from"

SQL
5

mysql update from select

UPDATE t1
SET t1.COL1 = t2.COL1, t1.COL2 = t2.COL2
FROM MY_TABLE AS t1
INNER JOIN MY_OTHER_TABLE AS t2 ON t1.COLID = t2.ID
WHERE t1.COL3 = 'OK';
Posted by: Guest on May-09-2021
6

update table mysql

-- Things in brackets are optional
-- IGNORE modifier updates rows even if errors occur (ie: the rows that cause errors are simply not updated)
UPDATE [IGNORE] table_name 
SET 
    column_name1 = expr1,
    column_name2 = expr2,
    ...
[WHERE 
    condition]; -- WHERE tells us which rows to update based on said condition
Posted by: Guest on May-01-2020
1

on update date mysql

ALTER TABLE t1 MODIFY post_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
Posted by: Guest on April-26-2021
-1

mysql update value

UPDATE employees 
SET 
    email = '[email protected]'
WHERE
    employeeNumber = 1056;Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on March-30-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language