PostgreSQL DIVISION
From w3cyberlearnings
Contents |
Postgresql / operator
Division two or more number. All the number must not be null.
Syntax / operator
a / b
Example 1
postgres=# SELECT 10/5 e2; e2 ---- 2 (1 row) postgres=# SELECT 10/3 e2; e2 ---- 3 (1 row)
Related Links
- addition(+)
- subtraction(-)
- multiplication(*)
- division(/)