update information in a mysql column

Solutions on MaxInterview for update information in a mysql column by the best coders in the world

showing results for - "update information in a mysql column"
Jeb
03 Nov 2018
1UPDATE employees 
2SET 
3    email = 'mary.patterson@classicmodelcars.com'
4WHERE
5    employeeNumber = 1056;Code language: SQL (Structured Query Language) (sql)
Lilly
26 Feb 2019
1UPDATE employees 
2SET 
3    lastname = 'Hill',
4    email = 'mary.hill@classicmodelcars.com'
5WHERE
6    employeeNumber = 1056;Code language: SQL (Structured Query Language) (sql)