Answers for "how to change whole one column value in sql"

SQL
12

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 column values

mapping_dict = {
    'Android': 'Android',
    'Chrome OS': 'Chrome OS',
    'Linux': 'Linux',
    'Mac OS': 'macOS',
    'No OS': 'No OS',
    'Windows': 'Windows',
    'macOS': 'macOS'
}

df['col'] = df['col'].map(mapping_dict)
print(my_series)
Posted by: Guest on July-29-2021

Code answers related to "how to change whole one column value in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language