Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 570 Bytes

math-functions.md

File metadata and controls

30 lines (28 loc) · 570 Bytes

Math Functions

Most math functions from the .Net Math class are supported by N1QL. They may be used anywhere in the query, including where predicates, select projections, and sort ordering.

##Supported Math Functions

  • Math.Abs
  • Math.Acos
  • Math.Atan
  • Math.Atan2
  • Math.Asin
  • Math.Ceiling
  • Math.Cos
  • Math.Exp
  • Math.Floor
  • Math.Log
  • Math.Log10
  • Math.Pow
  • Math.Round
  • Math.Sign
  • Math.Sin
  • Math.Sqrt
  • Math.Tan
  • Math.Trunc

##Supported Math Operators

  • Addition (+)
  • Subtraction/Negation (-)
  • Multiplication (*)
  • Division (/)
  • Modulus (%)