<?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%2FConversion_Functions%2FIntroduction</id>
		<title>Oracle PL/SQL Tutorial/Conversion 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%2FConversion_Functions%2FIntroduction"/>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Conversion_Functions/Introduction&amp;action=history"/>
		<updated>2026-04-03T18:42:19Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://sqle.ru/index.php?title=Oracle_PL/SQL_Tutorial/Conversion_Functions/Introduction&amp;diff=4001&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/Conversion_Functions/Introduction&amp;diff=4001&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/Conversion_Functions/Introduction&amp;diff=4002&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/Conversion_Functions/Introduction&amp;diff=4002&amp;oldid=prev"/>
				<updated>2010-05-26T10:08:18Z</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;== Conversion Functions==&lt;br /&gt;
&lt;br /&gt;
Function&lt;br /&gt;
Description&lt;br /&gt;
ASCIISTR(x)&lt;br /&gt;
Converts x to an ASCII string, where x may be a string in any character set.&lt;br /&gt;
BIN_TO_NUM(x)&lt;br /&gt;
Converts x to a binary number. Returns a NUMBER.&lt;br /&gt;
CAST(x AS type_name)&lt;br /&gt;
Converts a value in x from one data type to another specified in type_name.&lt;br /&gt;
CHARTOROWID(x)&lt;br /&gt;
Converts x to a ROWID.&lt;br /&gt;
COMPOSE(x)&lt;br /&gt;
Converts x to a Unicode string in its fully normalized form in the same character set as x. Unicode uses a 2-byte character set and can represent over 65,000 characters; it may also be used to represent non-English characters.&lt;br /&gt;
CONVERT(x, source_char_set, dest_char_set)&lt;br /&gt;
Converts x from source_char_set to dest_char_set.&lt;br /&gt;
DECODE(x, search, result, default)&lt;br /&gt;
Compares x with the value in search; if equal, DECODE() returns search, otherwise the value in default is returned.&lt;br /&gt;
DECOMPOSE(x)&lt;br /&gt;
Converts x to a Unicode string after decomposition in the same character set as x.&lt;br /&gt;
HEXTORAW(x)&lt;br /&gt;
Converts the character x containing hexadecimal digits (base 16) to a binary number (RAW). This function returns the returns RAW number.&lt;br /&gt;
NUMTODSINTERVAL(x)&lt;br /&gt;
Converts the number x to an INTERVAL DAY TO SECOND. You&amp;quot;ll learn about date and time intervalCrelated functions in the next chapter.&lt;br /&gt;
NUMTOYMINTERVAL(x)&lt;br /&gt;
Convert the number x to an INTERVAL YEAR TO MONTH.&lt;br /&gt;
RAWTOHEX(x)&lt;br /&gt;
Converts the binary number (RAW) x to a VARCHAR2 character containing the equivalent hexadecimal number.&lt;br /&gt;
RAWTONHEX(x)&lt;br /&gt;
Converts the binary number (RAW) x to an NVARCHAR2 character containing the equivalent hexadecimal number. An NVARCHAR2 is used to store strings in the national character set.&lt;br /&gt;
ROWIDTOCHAR(x)&lt;br /&gt;
Converts the ROWID x to a VARCHAR2 character.&lt;br /&gt;
ROWIDTONCHAR(x)&lt;br /&gt;
Converts the ROWID x to an NVARCHAR2 character.&lt;br /&gt;
TO_BINARY_DOUBLE(x)&lt;br /&gt;
New for Oracle Database 10g. Converts x to a BINARY_DOUBLE.&lt;br /&gt;
TO_BINARY_FLOAT(x)&lt;br /&gt;
New for Oracle Database 10g. Converts x to a BINARY_FLOAT.&lt;br /&gt;
TO_CHAR(x [, format])&lt;br /&gt;
Converts x to a VARCHAR2 string. You can supply an optional format that indicates the format of x.&lt;br /&gt;
TO_CLOB(x)&lt;br /&gt;
Converts x to a character large object (CLOB). A CLOB is used to store large amounts of character data.&lt;br /&gt;
TO_DATE(x [, format])&lt;br /&gt;
Converts x to a DATE.&lt;br /&gt;
TO_DSINTERVAL(x)&lt;br /&gt;
Convert the string x to an INTERVAL DAY TO SECOND.&lt;br /&gt;
TO_MULTI_BYTE(x)&lt;br /&gt;
Converts the single-byte characters in x to their corresponding multi-byte characters. The return type is the same as the type for x.&lt;br /&gt;
TO_NCHAR(x)&lt;br /&gt;
Converts x in the database character set to an NVARCHAR2.&lt;br /&gt;
TO_NCLOB(x)&lt;br /&gt;
Converts x to an NCLOB. An NCLOB is used to store large amounts of national language character data.&lt;br /&gt;
TO_NUMBER(x [, format])&lt;br /&gt;
Converts x to a NUMBER.&lt;br /&gt;
TO_SINGLE_BYTE(x)&lt;br /&gt;
Converts the multi-byte characters in x to their corresponding single-byte characters. The return type is the same as the type for x.&lt;br /&gt;
TO_TIMESTAMP(x)&lt;br /&gt;
Converts the string x to a TIMESTAMP.&lt;br /&gt;
TO_TIMESTAMP_TZ(x)&lt;br /&gt;
Converts the string x to a TIMESTAMP WITH TIME ZONE.&lt;br /&gt;
TO_YMINTERVAL(x)&lt;br /&gt;
Converts the string x to an INTERVAL YEAR TO MONTH.&lt;br /&gt;
TRANSLATE(x, from_string, to_string)&lt;br /&gt;
Converts all occurrences of from_string in x to to_string.&lt;br /&gt;
UNISTR(x)&lt;br /&gt;
Converts the characters in x to the national language character set (NCHAR).&lt;br /&gt;
&amp;lt;p&amp;gt;Quote from:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Oracle Database 10g SQL (Osborne ORACLE Press Series) (Paperback)&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Paperback: 608 pages&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Publisher: McGraw-Hill Osborne Media; 1st edition (February 20, 2004)&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# Language: English&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# ISBN-10: 0072229810&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;# ISBN-13: 978-0072229813&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>