PostgreSQL 13で立方根を求めるサンプル
環境
PostgreSQL 13.2
Windows 10 Home 64bit
構文
cbrt(数値)
cbrt関数を利用して立方根を求めます。
使用例
postgres=# SELECT cbrt(8) result; result ---------- 2 (1 行)
Coding Changes the World
環境
PostgreSQL 13.2
Windows 10 Home 64bit
構文
cbrt(数値)
cbrt関数を利用して立方根を求めます。
使用例
postgres=# SELECT cbrt(8) result; result ---------- 2 (1 行)