星环大数据基础平台社区版
2024.5
未找到匹配目录
  • 1 版本更新日志
  • 2 社区版家族介绍及资源获取
  • 3 社区开发版安装手册
  • 4 社区版安装手册
  • 5 快速入门手册
  • 6 开发者指南
    • 6.1 前言
    • 6.2 Inceptor简介
    • 6.3 连接数据库
    • 6.4 开发规范
    • 6.5 数据入库
    • 6.6 应用程序开发
    • 6.7 资源与管理权限
    • 6.8 SQL参考
      • 6.8.1 章节概述
      • 6.8.2 数据定义语言(DDL)
      • 6.8.3 数据操作语言(DML)
      • 6.8.4 数据查询语句(DQL)
      • 6.8.5 Compact/小文件合并
      • 6.8.6 事务控制
      • 6.8.7 ROWKEY
      • 6.8.8 Skew Join
      • 6.8.9 物化视图
      • 6.8.10 空串和 NULL
      • 6.8.11 函数与运算符
        • 6.8.11.1 Inceptor函数和运算符概览
        • 6.8.11.2 Inceptor函数和运算符指南中的表
        • 6.8.11.3 关系运算符
        • 6.8.11.4 算术运算符
        • 6.8.11.5 逻辑运算符
        • 6.8.11.6 数学函数
        • 6.8.11.7 类型转换函数
        • 6.8.11.8 日期函数
        • 6.8.11.9 条件函数
        • 6.8.11.10 字符串函数
        • 6.8.11.11 XML函数
        • 6.8.11.12 复杂类型函数
        • 6.8.11.13 表生成函数
        • 6.8.11.14 聚合/分析函数
        • 6.8.11.15 窗口函数
        • 6.8.11.16 Context函数
        • 6.8.11.17 脱敏函数
        • 6.8.11.18 其他函数和运算符
      • 6.8.12 PL/SQL 指南(Oracle 方言)
      • 6.8.13 SQL PL 指南(DB2 方言)
    • 6.9 附录
  • 7 社区版产品使用指南(问题排查攻略)
  • 8 运维组件使用指南
  • 9 社区版产品升级手册
  • 客户服务
星环大数据基础平台社区版
2024.5
本页导航
文档首页>星环大数据基础平台社区版>6 开发者指南>6.8 SQL参考>6.8.11 函数与运算符>6.8.11.6 数学函数>
文档搜索
6.8.11.6 数学函数
更新时间:7/16/2024, 8:54:05 AM
上一篇:6.8.11.5 逻辑运算符 下一篇:6.8.11.7 类型转换函数
文档反馈
本页导航
  • 简单求值
    • round(double a[, int d])
    • floor(double a)
    • ceil(double a) 或 ceiling(double a)
    • rand([int seed])
    • abs(double a)
    • pmod(int a, int b)
    • positive(int a)
    • negative(int a)
    • sign(x)
    • pi()
    • e()
    • A div B
    • prime(<int>)
    • max_scalar(<scalar>, <scalar> [, <scalar>, …])
    • min_scalar(<scalar>, <scalar> [, <scalar>, …])
    • least (<arg>, <arg> [,<arg>, …])
    • trunc (<number>, <precision>)
    • shiftleft(n, int k)
    • shiftright(n, int k)
    • shiftrightunsigned(n, int k)
    • factorial(int n)
  • 幂/方根/对数
    • exp(double n)
    • ln(double a)
    • log10(double a)
    • log2(double a)
    • log(double base, double a)
    • pow(double a, double p)
    • power(double a, double p)
    • sqrt(double a)
    • cbrt(a)
  • 进制/度量转换
    • bin(BIGINT a)
    • hex(BIGINT a) / hex(String a)
    • unhex(String a)
    • conv(BIGINT num, int from_base, int to_base)
    • degrees(double rad)
    • radians(double ang)
  • 三角函数
    • sin(double a)
    • sinh(double a)
    • asin(double a)
    • asinh(double a)
    • cos(double a)
    • cosh(double a)
    • acosh(double a)
    • acos(double a)
    • tan(double a)
    • tanh(double a)
    • atan(double a)
    • atan2(x, y)
    • atanh(double a)
  • 线性回归函数
    • regr_slope(col y,col x)
    • regr_intercept(col y,col x)
    • regr_r2(col y,col x)
    • regr_sxx(col y,col x)
    • regr_syy(col y,col x)
    • regr_sxy(col y,col x)
    • regr_avgx(col y,col x)
    • regr_avgy(col y,col x)
    • regr_count(col y,col x)