Operators
Operators perform arithmetic, comparison, and logical operations on values.
SQL
SELECT price * 0.9 AS discounted FROM courses;Try it Yourself
Run this SQL example in your local environment or course sandbox.
SQL Tutorial
Source: Bro Code
Operators perform arithmetic, comparison, and logical operations on values.
SELECT price * 0.9 AS discounted FROM courses;