Answers for "sql function to update table"

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
11

sql update record

UPDATE table_name
SET column1 = value1, column2 = value2...., columnN = valueN
WHERE [condition];
Posted by: Guest on June-04-2020
0

update statement expression

UPDATE customer_tbl
SET outstanding_amt=outstanding_amt-(outstanding_amt*.10)
WHERE cust_country='India' AND grade=1;
Posted by: Guest on July-29-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language