PostgreSQL MULTIPLICATION
From w3cyberlearnings
Contents |
Postgresql * operator
Multiplication or times two or more number. The number must not be null.
Syntax * operator
a * b
Example 1
postgres=# SELECT 3*2*4 e3; e3 ---- 24 (1 row) postgres=# SELECT 3*2*43 e3; e3 ----- 258 (1 row)
Related Links
- addition(+)
- subtraction(-)
- multiplication(*)
- division(/)