Answers for "alter table with values"

SQL
10

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
-1

add column alter table default value

ALTER TABLE PERSON
ADD IS_ACTIVE VARCHAR2(1) DEFAULT 'N' NOT NULL
Posted by: Guest on August-12-2020

Code answers related to "alter table with values"

Code answers related to "SQL"

Browse Popular Code Answers by Language