PostgreSQL SUBTRACTION
From w3cyberlearnings
Contents |
Postgresql - operator
Subtraction one or more number.
Syntax - operator
a - b
Example 1
postgres=# SELECT 50-30 e1; e1 ---- 20 (1 row)
Example 2
postgres=# SELECT 50-30-3 e1; e1 ---- 17 (1 row)
Related Links
- addition(+)
- subtraction(-)
- multiplication(*)
- division(/)