MySQL Resources
resources for mysql admins and developers who are squealing for help
ABS( )This MySQL function returns the absolute value of a given number.
|
INET_NTOA( )This MySQL function converts the numeric equivalent of an IP address to its dot-quad notation.
|
ACOS( )This MySQL function returns the arccosine, in radians, of a given number.
|
LEAST( )Use this MySQL function to compare two or more values and return the smallest value.
|
ACOS( )This MySQL function returns the arccosine, in radians, of a given number.
|
LN( )This MySQL function returns the natural logarithm of its input.
|
ASIN( )This MySQL function returns the arcsine, in radians, of a given number.
|
LOG( )This MySQL function returns the logarithm of the first argument to the base indicated by the second argument.
|
ASIN( )This MySQL function returns the arcsine, in radians, of a given number.
|
LOG10( )This MySQL function returns the base 10 logarithm of a given number.
|
ATAN( )This MySQL function returns the arctangent, in radians, of a given number.
|
LOG2( )This MySQL function returns the base-two logarithm of a given number.
|
ATAN2( )This MySQL function returns the arctangent, in radians, of X and Y for a point on a Cartesian plane.
|
MOD( )This MySQL function returns the remainder of a number given in the first argument when divided by the number given in the second argument, the modulo.
|
BIT_COUNT( )This MySQL function returns the number of bits set in the argument, which is an integer that the function treats as a binary number.
|
OCT( )This MySQL function returns the octal or base 8 numeric system value of the given number.
|
CEIL( )This MySQL function rounds a given floating-point number up to the next higher integer.
|
PI( )This MySQL function returns by default the first five decimal places of the number pi.
|
CEILING( )This MySQL function rounds a given floating-point number up to the next higher integer.
|
POW( )This MySQL function returns the result of raising the number given in the first argument to the exponent given in the second argument.
|
CONV( )This MySQL function converts a number from one numeric base system to another.
|
POWER( )This MySQL function returns the result of raising the number given in the first argument to the power of the number given in the second argument.
|
COS( )This MySQL function returns the cosine of number, where number is expressed in radians.
|
RADIANS( )This MySQL function converts degrees to radians.
|
COT( )This MySQL function returns the cotangent of a number.
|
RAND( )This MySQL function returns a random floating-point number from 0 to 1.
|
DEGREES( )This MySQL function converts radians to degrees.
|
ROUND( )This MySQL function rounds a number given in the first argument to the nearest integer.
|
EXP( )This MySQL function returns the value of the natural logarithm base number e to the power of the given number.
|
SIGN( )This MySQL function returns -1 if the given number is a negative, 0 if it is zero, and 1 if it is positive.
|
FLOOR( )This MySQL function rounds a given floating-point number down to the next lower integer.
|
SIN( )This MySQL function returns the sine of the number given, where number is expressed in radians.
|
FORMAT( )This MySQL function returns the given floating-point number with a comma inserted between every three digits and a period before the number of decimal places specified in the second argument.
|
SQRT( )This MySQL function returns the square root of its input, which must be a positive number.
|
GREATEST( )This MySQL function compares two or more values, returning the greatest value.
|
TAN( )This MySQL function returns the tangent of an angle, where number is expressed in radians.
|
INET_ATON( )This MySQL function converts an Internet Protocol (IP) address in dot-quad notation to its numeric equivalent.
|
TRUNCATE( )This MySQL function returns a number equivalent to its first argument, removing any digits beyond the number of decimal places specified in the second argument.
|