PostgreSQL CUBE ROOT
From w3cyberlearnings
Contents |
Postgresql ||/ operator
Returns cube root of a number.
Syntax ||/operator
a is a number.
||/a
Example 1
postgres=# SELECT ||/ 125 c5; c5 ---- 5 (1 row)
Example 2
postgres=# SELECT ||/ 64 c4; c4 ---- 4 (1 row)
Related Links
- modulo(%)
- exponentiation(^)
- square root(|/)
- cube root(||/)