数学操作符: 比较新颖的: |/ :平方根 ||/ :立方根 !:阶乘(例:5!) !!:阶乘(例:!!5) 例: postgres=# select |/36; ?column? ---------- 6 (1 row) postgres=# select ||/8; ?column? ---------- 2 (1 row) postgres=# select 3!; ?column? ---------- 6 (1 row) postgres=# select !!3; ?column? ---------- 6 (1 row) 数学函数: 处理double precision数据的函数大多数是在宿主系统的C库基础上实现的;因此,精度和数值范围方面的行为都是根据宿主系统而变化的。