书栈网 · BookStack 本次搜索耗时 0.038 秒,为您找到 229762 个相关结果.
  • GEO函数

    GEO函数 greatCircleDistance pointInEllipses pointInPolygon geohashEncode geohashDecode geoToH3 geohashesInBox GEO函数 greatCircleDistance 使用great-circle distance公式 计算地球表面两...
  • JSON函数

    JSON函数 visitParamHas(params, name) visitParamExtractUInt(params, name) visitParamExtractInt(params, name) visitParamExtractFloat(params, name) visitParamExtractBool(params, nam...
  • 数组函数

    数组函数 empty notEmpty length emptyArrayUInt8, emptyArrayUInt16, emptyArrayUInt32, emptyArrayUInt64 emptyArrayInt8, emptyArrayInt16, emptyArrayInt32, emptyArrayInt64 emptyArrayFl...
  • 数学函数

    数学函数 e() pi() exp(x) log(x), ln(x) exp2(x) log2(x) exp10(x) log10(x) sqrt(x) cbrt(x) erf(x) erfc(x) lgamma(x) tgamma(x) sin(x) cos(x) tan(x) asin(x) acos(x) atan...
  • 比较函数

    比较函数 equals, a = b and a == b operator notEquals, a ! operator= b and a <> b less, < operator greater, > operator lessOrEquals, <= operator greaterOrEquals, >= operator ...
  • IP函数

    IP函数 IPv4NumToString(num) IPv4StringToNum(s) IPv4NumToStringClassC(num) IPv6NumToString(x) IPv6StringToNum(s) IPv4ToIPv6(x) cutIPv6(x, bitsToCutForIPv6, bitsToCutForIPv4) IP...
  • uuid 函数

    UUID UUID 性能及兼容性问题 UUID UUID 用于生成全局唯一的标识符。 当点数量到达十亿级别时,用 hash 函数生成 vid 有一定的冲突概率。因此 Nebula Graph 提供 UUID 函数来避免大量点时的 vid 冲突。 UUID 函数由 Murmurhash 与当前时间戳(单位为秒)组合而成。 UUID...
  • 内置函数

    内建函数 数学相关 字符串相关 时间相关 内建函数 Nebula Graph 支持在表达式中调用如下类型的内建函数。 数学相关 函数 描述 double abs(double x) 返回绝对值     double floor(double x) 返回小于参数的最大整数(向下取整)    double ceil(double x) 返回...
  • 数字函数

    ABS ACOS BITAND CEIL EXP FLOOR LN LOG MOD POWER REMAINDER ROUND SIGN SQRT TRUNC
  • 其它函数

    COALESCE NVL SLEEP 全文查找函数 COALESCE 声明 COALESCE(expr, expr, expr,...) 说明 依次参考各参数表达式,遇到非NULL值即停止并返回该值。如果所有的表达式都是空值,最终将返回一个空值。 所有表达式必须是相同类型,或者可以隐性转换为相同的类型。 例子 Oceanba...