Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
9.3. Mathematical Functions and Operators
Prev UpChapter 9. Functions and OperatorsHome Next

9.3. Mathematical Functions and Operators

Mathematical operators are provided for manyPostgres Pro types. For types without standard mathematical conventions (e.g., date/time types) we describe the actual behavior in subsequent sections.

Table 9.4 shows the available mathematical operators.

Table 9.4. Mathematical Operators

OperatorDescriptionExampleResult
+addition2 + 35
-subtraction2 - 3-1
*multiplication2 * 36
/division (integer division truncates the result)4 / 22
%modulo (remainder)5 % 41
^exponentiation (associates left to right)2.0 ^ 3.08
|/square root|/ 25.05
||/cube root||/ 27.03
!factorial (deprecated, usefactorial() instead)5 !120
!!factorial as a prefix operator (deprecated, usefactorial() instead)!! 5120
@absolute value@ -5.05
&bitwise AND91 & 1511
|bitwise OR32 | 335
#bitwise XOR17 # 520
~bitwise NOT~1-2
<<bitwise shift left1 << 416
>>bitwise shift right8 >> 22

The bitwise operators work only on integral data types and are also available for the bit string typesbit andbit varying, as shown inTable 9.14.

Table 9.5 shows the available mathematical functions. In the table,dp indicatesdouble precision. Many of these functions are provided in multiple forms with different argument types. Except where noted, any given form of a function returns the same data type as its argument. The functions working withdouble precision data are mostly implemented on top of the host system's C library; accuracy and behavior in boundary cases can therefore vary depending on the host system.

Table 9.5. Mathematical Functions

FunctionReturn TypeDescriptionExampleResult
abs(x)(same as input)absolute valueabs(-17.4)17.4
cbrt(dp)dpcube rootcbrt(27.0)3
ceil(dp ornumeric)(same as input)nearest integer greater than or equal to argumentceil(-42.8)-42
ceiling(dp ornumeric)(same as input)nearest integer greater than or equal to argument (same asceil)ceiling(-95.3)-95
degrees(dp)dpradians to degreesdegrees(0.5)28.6478897565412
div(ynumeric,xnumeric)numericinteger quotient ofy/xdiv(9,4)2
exp(dp ornumeric)(same as input)exponentialexp(1.0)2.71828182845905
factorial(bigint)numericfactorialfactorial(5)120
floor(dp ornumeric)(same as input)nearest integer less than or equal to argumentfloor(-42.8)-43
ln(dp ornumeric)(same as input)natural logarithmln(2.0)0.693147180559945
log(dp ornumeric)(same as input)base 10 logarithmlog(100.0)2
log10(dp ornumeric)(same as input)base 10 logarithmlog10(100.0)2
log(bnumeric,xnumeric)numericlogarithm to baseblog(2.0, 64.0)6.0000000000
mod(y,x)(same as argument types)remainder ofy/xmod(9,4)1
pi()dpπ constantpi()3.14159265358979
power(adp,bdp)dpa raised to the power ofbpower(9.0, 3.0)729
power(anumeric,bnumeric)numerica raised to the power ofbpower(9.0, 3.0)729
radians(dp)dpdegrees to radiansradians(45.0)0.785398163397448
round(dp ornumeric)(same as input)round to nearest integerround(42.4)42
round(vnumeric,sint)numericround tos decimal placesround(42.4382, 2)42.44
scale(numeric)integerscale of the argument (the number of decimal digits in the fractional part)scale(8.41)2
sign(dp ornumeric)(same as input)sign of the argument (-1, 0, +1)sign(-8.4)-1
sqrt(dp ornumeric)(same as input)square rootsqrt(2.0)1.4142135623731
trunc(dp ornumeric)(same as input)truncate toward zerotrunc(42.8)42
trunc(vnumeric,sint)numerictruncate tos decimal placestrunc(42.4382, 2)42.43
width_bucket(operanddp,b1dp,b2dp,countint)intreturn the bucket number to whichoperand would be assigned in a histogram havingcount equal-width buckets spanning the rangeb1 tob2; returns0 orcount+1 for an input outside the rangewidth_bucket(5.35, 0.024, 10.06, 5)3
width_bucket(operandnumeric,b1numeric,b2numeric,countint)intreturn the bucket number to whichoperand would be assigned in a histogram havingcount equal-width buckets spanning the rangeb1 tob2; returns0 orcount+1 for an input outside the rangewidth_bucket(5.35, 0.024, 10.06, 5)3
width_bucket(operandanyelement,thresholdsanyarray)intreturn the bucket number to whichoperand would be assigned given an array listing the lower bounds of the buckets; returns0 for an input less than the first lower bound; thethresholds arraymust be sorted, smallest first, or unexpected results will be obtainedwidth_bucket(now(), array['yesterday', 'today', 'tomorrow']::timestamptz[])2

Table 9.6 shows functions for generating random numbers.

Table 9.6. Random Functions

FunctionReturn TypeDescription
random()dprandom value in the range 0.0 <= x < 1.0
setseed(dp)voidset seed for subsequentrandom() calls (value between -1.0 and 1.0, inclusive)

Therandom() function uses a simple linear congruential algorithm. It is fast but not suitable for cryptographic applications; see thepgcrypto module for a more secure alternative. Ifsetseed() is called, the results of subsequentrandom() calls in the current session are repeatable by re-issuingsetseed() with the same argument. Without any priorsetseed() call in the same session, the firstrandom() call obtains a seed from a platform-dependent source of random bits.

Table 9.7 shows the available trigonometric functions. All these functions take arguments and return values of typedouble precision. Each of the trigonometric functions comes in two variants, one that measures angles in radians and one that measures angles in degrees.

Table 9.7. Trigonometric Functions

Function (radians)Function (degrees)Description
acos(x)acosd(x)inverse cosine
asin(x)asind(x)inverse sine
atan(x)atand(x)inverse tangent
atan2(y,x)atan2d(y,x)inverse tangent ofy/x
cos(x)cosd(x)cosine
cot(x)cotd(x)cotangent
sin(x)sind(x)sine
tan(x)tand(x)tangent

Note

Another way to work with angles measured in degrees is to use the unit transformation functionsradians() anddegrees() shown earlier. However, using the degree-based trigonometric functions is preferred, as that way avoids round-off error for special cases such assind(30).

Table 9.8 shows the available hyperbolic functions. All these functions take arguments and return values of typedouble precision.

Table 9.8. Hyperbolic Functions

FunctionDescriptionExampleResult
sinh(x)hyperbolic sinesinh(0)0
cosh(x)hyperbolic cosinecosh(0)1
tanh(x)hyperbolic tangenttanh(0)0
asinh(x)inverse hyperbolic sineasinh(0)0
acosh(x)inverse hyperbolic cosineacosh(1)0
atanh(x)inverse hyperbolic tangentatanh(0)0


Prev Up Next
9.2. Comparison Functions and Operators Home 9.4. String Functions and Operators
epubpdf
Go to Postgres Pro Standard 12
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp