COT()

函数说明

COT()函数返回输入参数(用弧度表示)的余切值。

函数语法

  1. > COT(number)

参数释义

参数说明
number必要参数,可取任意数值数据类型

示例

  1. > drop table if exists t1;
  2. > create table t1(a int,b float);
  3. > insert into t1 values(1,3.14159);
  4. > insert into t1 values(-1,0);
  5. > select cot(a),cot(b) from t1;
  6. +---------+--------+
  7. | cot(a) | cot(b) |
  8. +---------+--------+
  9. | -0.5574 | 1.0000 |
  10. | 2.5574 | 1.0000 |
  11. +---------+--------+

限制

MatrixOne目前只支持在查询表的时候使用函数,不支持单独使用函数。