Hello experts I need to update next column value with divisible by 100
1 Answer
You can use the Modulo operator, something along these lines:
UPDATE YourTable
SET NewBalance = Balance - (Balance % 100);
HTH
-
1Thank you sir I solved my problem with the help of your answer. Commented Dec 14, 2018 at 3:39