PostgreSQL ADDITION
From w3cyberlearnings
Contents |
Postgresql + operator
Add two or more number.
Syntax + operator
- a is a number
- b is a number
a + b
Example 1
postgres=# SELECT 3+5; ?column? ---------- 8 (1 row) postgres=# SELECT 3+5 total; total ------- 8 (1 row)
Related Links
- addition(+)
- subtraction(-)
- multiplication(*)
- division(/)