SQL update columns with arithmetical expression
In this page, we are going to discuss how to change the data of the columns with the SQL UPDATE statement using an arithmetical expression.
Example:
Sample table: neworder
To change the value of 'advance_amount' column with a new value as specified -
1. 'ord_amount'*10,
the following SQL statement can be used:
SQL Code:
UPDATE neworder
SET advance_amount=ord_amount*.10;
Output:

SQL update columns with arithmetical expression and where
In the following, we are going to discuss how to change the data of the columns with the SQL UPDATE statement using arithmetical expression and SQL WHERE clause.
Example:
Sample table: neworder
To update the value of 'advance_amount' with following conditions -
1. new value for 'advance_amount is 'ord_amount'*10,
2. 'ord_date' must be greater than '01-Aug-08',
the following SQL statement can be used:
SQL Code:
UPDATE neworder
SET advance_amount=ord_amount*.10
WHERE ord_date>'01-Aug-08';
SQL update columns with arithmetical expression and boolean 'AND'
In the following, we are going to discuss how to change the data of the columns with the SQL UPDATE statement using arithmetical expression and SQL WHERE clause and boolean operator AND.
Example:
Sample table: customer1
To change the value of 'outstanding_amt' of 'customer1' table with following conditions -
1. modified value for 'outstanding_amt' is 'outstanding_amt'-('outstanding_amt'*.10),
2. 'cust_country' must be 'India',
3. and 'grade' must be 1,
the following SQL statement can be used :
SQL Code:
UPDATE customer1
SET outstanding_amt=outstanding_amt-(outstanding_amt*.10)
WHERE cust_country='India' AND grade=1;
SQL update columns with arithmetical expression and comparison operator
In the following, we are discussing, how to change the data of the columns with the SQL UPDATE statement using arithmetical expression and COMPARISON operator.
Example:
Sample table: neworder
To change the value of 'advance_amount' of 'neworder' table with the following condition -
1. modified value for 'advance_amount' is 'ord_amount'*.10,
2. 'ord_date' must be greater than '01-Aug-08',
3. and 'ord_date' must be less than '01-Dec-08',
the following SQL statement can be used:
SQL Code:
UPDATE neworder
SET advance_amount=ord_amount*.10
WHERE ord_date>'01-Aug-08' AND ord_date<'01-Dec-08';
Here is a new document which is a collection of questions with short and simple answers, useful for learning SQL as well as for interviews.
Check out our 1000+ SQL Exercises with solution and explanation to improve your skills.
Previous: Update with condition
Next: Update columns using sum function and group by
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join