Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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;
Source by www.zentut.com #
 
PREVIOUS NEXT
Tagged: #change #table #sql
ADD COMMENT
Topic
Name
8+2 =