modify table in sql code example
Example 1: sql change column types
ALTER TABLE table_name
ALTER COLUMN column_name datatype;
-- Example
ALTER TABLE product
ALTER COLUMN description VARCHAR(250);
Example 2: sql add column
ALTER TABLE Customers
ADD Email varchar(255);
Example 3: 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;