<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=Oracle_PL%2FSQL_Tutorial%2FNumerical_Math_Functions%2FIntroduction</id>
		<title>Oracle PL/SQL Tutorial/Numerical Math Functions/Introduction - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=Oracle_PL%2FSQL_Tutorial%2FNumerical_Math_Functions%2FIntroduction"/>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Numerical_Math_Functions/Introduction&amp;action=history"/>
		<updated>2026-05-25T16:48:17Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Numerical_Math_Functions/Introduction&amp;diff=4161&amp;oldid=prev</id>
		<title> в 13:45, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Numerical_Math_Functions/Introduction&amp;diff=4161&amp;oldid=prev"/>
				<updated>2010-05-26T13:45:46Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 13:45, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Numerical_Math_Functions/Introduction&amp;diff=4162&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Numerical_Math_Functions/Introduction&amp;diff=4162&amp;oldid=prev"/>
				<updated>2010-05-26T10:08:50Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Common numerical manipulation functions==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;OL&amp;gt;&amp;lt;LI&amp;gt;near value functions.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;null value functions.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;log and exponential functions.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;ordinary trigonometry functions.&amp;lt;/LI&amp;gt;&amp;lt;LI&amp;gt;hyperbolic trignometrical functions.&amp;lt;/LI&amp;gt;&amp;lt;/OL&amp;gt;&lt;br /&gt;
14. 1. Introduction&lt;br /&gt;
14. 1. 1. &lt;br /&gt;
Common numerical manipulation functions&lt;br /&gt;
14. 1. 2. &lt;br /&gt;
&amp;lt;A href=&amp;quot;/Tutorial/Oracle/0280__Numerical-Math-Functions/NumericFunctionsList.htm&amp;quot;&amp;gt;Numeric Functions List&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Numeric Functions List==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;Numeric functions perform calculations.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Numeric functions accept an input number, which may come from a column in a table or from an expression that evaluates to a number.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;A calculation is performed with this input and a number is returned.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;An example of a numeric function is SQRT(), which returns the square root of the input number.&amp;lt;/p&amp;gt;&lt;br /&gt;
Function&lt;br /&gt;
Description&lt;br /&gt;
ABS(x)&lt;br /&gt;
Returns the absolute value of x.&lt;br /&gt;
ACOS(x)&lt;br /&gt;
Returns the arccosine of x.&lt;br /&gt;
ASIN(x)&lt;br /&gt;
Returns the arcsine of x.&lt;br /&gt;
ATAN(x)&lt;br /&gt;
Returns the arctangent of x.&lt;br /&gt;
ATAN2(x, y)&lt;br /&gt;
Returns the arctangent of x and y.&lt;br /&gt;
BITAND(x, y)&lt;br /&gt;
Returns the result of performing a bitwise AND on x and y.&lt;br /&gt;
COS(x)&lt;br /&gt;
Returns the cosine of x, where x is an angle in radians.&lt;br /&gt;
COSH(x)&lt;br /&gt;
Returns the hyperbolic cosine of x.&lt;br /&gt;
CEIL(x)&lt;br /&gt;
Returns the smallest integer greater than or equal to x.&lt;br /&gt;
EXP(x)&lt;br /&gt;
Returns the result of the number e raised to the power x, where e is approximately 2.71828183.&lt;br /&gt;
FLOOR(x)&lt;br /&gt;
Returns the largest integer less than or equal to x.&lt;br /&gt;
LOG(x, y)&lt;br /&gt;
Returns the logarithm, base x, of y.&lt;br /&gt;
LN(x)&lt;br /&gt;
Returns the natural logarithm of x.&lt;br /&gt;
LN(2.71828183) = 1&lt;br /&gt;
MOD(x, y)&lt;br /&gt;
Returns the remainder when x is divided by y.&lt;br /&gt;
POWER(x, y)&lt;br /&gt;
Returns the result of x raised to the power y.&lt;br /&gt;
ROUND(x [, y])&lt;br /&gt;
Returns the result of rounding x an optional y decimal places. If y is omitted, x is rounded to zero decimal places. If y is negative, x is rounded to the left of the decimal point.&lt;br /&gt;
SIGN(x)&lt;br /&gt;
Returns -1 if x is negative, 1 if x is positive, or 0 if x is zero.&lt;br /&gt;
SIN(x)&lt;br /&gt;
Returns the sine of x.&lt;br /&gt;
SINH(x)&lt;br /&gt;
Returns the hyperbolic sine of x.&lt;br /&gt;
SQRT(x)&lt;br /&gt;
Returns the square root of x.&lt;br /&gt;
TAN(x)&lt;br /&gt;
Returns the tangent of x.&lt;br /&gt;
TAN(0) = 0&lt;br /&gt;
TANH(x)&lt;br /&gt;
Returns the hyperbolic tangent of x.&lt;br /&gt;
TRUNC(x [, y])&lt;br /&gt;
Returns the result of truncating x an optional y decimal places. If y is omitted, x is truncated to zero decimal places. If y is negative, x is truncated to the left of the decimal point.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>