Description: Converts x into the type specified by y.
For example:
1 2 3 4 5 | SELECT cast('22-oct-1997' as timestamp); timestamp --------------------- 1997-10-22 00:00:00 (1 row) |
Description: Converts a string in hexadecimal format into binary format.
Return type: raw
For example:
1 2 3 4 5 | SELECT hextoraw('7D'); hextoraw ---------- 7D (1 row) |
Description: Converts values of the number type into the timestamp of the specified type.
Return type: timestamp
For example:
1 2 3 4 5 | SELECT numtoday(2); numtoday ---------- 2 days (1 row) |
Description: Obtains the system timestamp.
Return type: timestamp with time zone
For example:
1 2 3 4 5 | SELECT pg_systimestamp(); pg_systimestamp ------------------------------- 2015-10-14 11:21:28.317367+08 (1 row) |
Description: Converts a string in binary format into hexadecimal format.
The result is the ACSII code of the input characters in hexadecimal format.
Return type: varchar
For example:
1 2 3 4 5 | SELECT rawtohex('1234567'); rawtohex ---------------- 31323334353637 (1 row) |
Description: Converts a DATETIME or INTERVAL value of the DATE/TIMESTAMP/TIMESTAMP WITH TIME ZONE/TIMESTAMP WITH LOCAL TIME ZONE type into the VARCHAR type according to the format specified by fmt.
Return type: varchar
For example:
1 2 3 4 5 | SELECT to_char(current_timestamp,'HH12:MI:SS'); to_char ---------- 10:19:26 (1 row) |
1 2 3 4 5 | SELECT to_char(current_timestamp,'FMHH12:FMMI:FMSS'); to_char ---------- 10:19:46 (1 row) |
Description: Converts the values of the double-precision type into the strings in the specified format.
Return type: text
For example:
1 2 3 4 5 | SELECT to_char(125.8::real, '999D99'); to_char --------- 125.80 (1 row) |
Descriptions: Converts an integer or a value in floating point format into a string in specified format.
Return type: varchar
For example:
1 2 3 4 5 | SELECT to_char(1485,'9,999'); to_char --------- 1,485 (1 row) |
1 2 3 4 5 | SELECT to_char( 1148.5,'9,999.999'); to_char ------------ 1,148.500 (1 row) |
1 2 3 4 5 | SELECT to_char(148.5,'990999.909'); to_char ------------- 0148.500 (1 row) |
1 2 3 4 5 | SELECT to_char(123,'XXX'); to_char --------- 7B (1 row) |
Description: Converts the values of the time interval type into the strings in the specified format.
Return type: text
For example:
1 2 3 4 5 | SELECT to_char(interval '15h 2m 12s', 'HH24:MI:SS'); to_char ---------- 15:02:12 (1 row) |
Description: Converts the values of the integer type into the strings in the specified format.
Return type: text
For example:
1 2 3 4 5 | SELECT to_char(125, '999'); to_char --------- 125 (1 row) |
Description: Converts the values of the numeric type into the strings in the specified format.
Return type: text
For example:
1 2 3 4 5 | SELECT to_char(-125.8, '999D99S'); to_char --------- 125.80- (1 row) |
Description: Converts the CHAR/VARCHAR/VARCHAR2/CLOB type into the VARCHAR type.
If this function is used to convert data of the CLOB type, and the value to be converted exceeds the value range of the target type, an error is returned.
Return type: varchar
For example:
1 2 3 4 5 | SELECT to_char('01110'); to_char --------- 01110 (1 row) |
Description: Converts the values of the timestamp type into the strings in the specified format.
Return type: text
For example:
1 2 3 4 5 | SELECT to_char(current_timestamp, 'HH12:MI:SS'); to_char ---------- 10:55:59 (1 row) |
Description: Convert the RAW type or text character set type CHAR/NCHAR/VARCHAR/VARCHAR2/NVARCHAR2/TEXT into the CLOB type.
Return type: clob
For example:
1 2 3 4 5 | SELECT to_clob('ABCDEF'::RAW(10)); to_clob --------- ABCDEF (1 row) |
1 2 3 4 5 | SELECT to_clob('hello111'::CHAR(15)); to_clob ---------- hello111 (1 row) |
1 2 3 4 5 | SELECT to_clob('gauss123'::NCHAR(10)); to_clob ---------- gauss123 (1 row) |
1 2 3 4 5 | SELECT to_clob('gauss234'::VARCHAR(10)); to_clob ---------- gauss234 (1 row) |
1 2 3 4 5 | SELECT to_clob('gauss345'::VARCHAR2(10)); to_clob ---------- gauss345 (1 row) |
1 2 3 4 5 | SELECT to_clob('gauss456'::NVARCHAR2(10)); to_clob ---------- gauss456 (1 row) |
1 2 3 4 5 | SELECT to_clob('World222!'::TEXT); to_clob ----------- World222! (1 row) |
Description: Converts values of the text type into the timestamp in the specified format.
Return type: timestamp
For example:
1 2 3 4 5 | SELECT to_date('2015-08-14'); to_date --------------------- 2015-08-14 00:00:00 (1 row) |
Description: Converts the values of the string type into the dates in the specified format.
Return type: timestamp
For example:
1 2 3 4 5 | SELECT to_date('05 Dec 2000', 'DD Mon YYYY'); to_date --------------------- 2000-12-05 00:00:00 (1 row) |
Description: Converts a string into a value of the DATE type according to the format specified by fmt. For details about the fmt format, see Table 2.
This function cannot support the CLOB type directly. However, a parameter of the CLOB type can be converted using implicit conversion.
Return type: date
For example:
1 2 3 4 5 | SELECT TO_DATE('05 Dec 2010','DD Mon YYYY'); to_date --------------------- 2010-12-05 00:00:00 (1 row) |
Description: Converts expr into a value of the NUMBER type according to the specified format.
For details about the type conversion formats, see Table 1.
If a hexadecimal string is converted into a decimal number, the hexadecimal string can include a maximum of 16 bytes if it is to be converted into a sign-free number.
During the conversion from a hexadecimal string to a decimal digit, the format string cannot have a character other than x or X. Otherwise, an error is reported.
Return type: number
For example:
1 2 3 4 5 | SELECT to_number('12,454.8-', '99G999D9S'); to_number ----------- -12454.8 (1 row) |
Description: Converts the values of the string type into the numbers in the specified format.
Return type: numeric
For example:
1 2 3 4 5 | SELECT to_number('12,454.8-', '99G999D9S'); to_number ----------- -12454.8 (1 row) |
Description: Converts a UNIX century into a timestamp.
Return type: timestamp with time zone
For example:
1 2 3 4 5 | SELECT to_timestamp(1284352323); to_timestamp ------------------------ 2010-09-13 12:32:03+08 (1 row) |
Description: Converts a string into a value of the timestamp type according to the format specified by fmt. When fmt is not specified, perform the conversion according to the format specified by nls_timestamp_format. For details about the fmt format, see Table 2.
In to_timestamp in GaussDB(DWS):
Characters in the fmt must match the schema for formatting the data and time. Otherwise, an error is reported.
Return type: timestamp without time zone
For example:
1 2 3 4 5 6 7 8 9 10 11 | SHOW nls_timestamp_format; nls_timestamp_format ---------------------------- DD-Mon-YYYY HH:MI:SS.FF AM (1 row) SELECT to_timestamp('12-sep-2014'); to_timestamp --------------------- 2014-09-12 00:00:00 (1 row) |
1 2 3 4 5 | SELECT to_timestamp('12-Sep-10 14:10:10.123000','DD-Mon-YY HH24:MI:SS.FF'); to_timestamp ------------------------- 2010-09-12 14:10:10.123 (1 row) |
1 2 3 4 5 | SELECT to_timestamp('-1','SYYYY'); to_timestamp ------------------------ 0001-01-01 00:00:00 BC (1 row) |
1 2 3 4 5 | SELECT to_timestamp('98','RR'); to_timestamp --------------------- 1998-01-01 00:00:00 (1 row) |
1 2 3 4 5 | SELECT to_timestamp('01','RR'); to_timestamp --------------------- 2001-01-01 00:00:00 (1 row) |
Description: Converts values of the string type into the timestamp of the specified type.
Return type: timestamp
For example:
1 2 3 4 5 | SELECT to_timestamp('05 Dec 2000', 'DD Mon YYYY'); to_timestamp --------------------- 2000-12-05 00:00:00 (1 row) |
The following table describes the value formats of the to_number function.
Schema |
Description |
---|---|
9 |
Value with specified digits |
0 |
Values with leading zeros |
Period (.) |
Decimal point |
Comma (,) |
Group (thousand) separator |
PR |
Negative values in angle brackets |
S |
Sign anchored to number (uses locale) |
L |
Currency symbol (uses locale) |
D |
Decimal point (uses locale) |
G |
Group separator (uses locale) |
MI |
Minus sign in the specified position (if the number is less than 0) |
PL |
Plus sign in the specified position (if the number is greater than 0) |
SG |
Plus or minus sign in the specified position |
RN |
Roman numerals (the input values are between 1 and 3999) |
TH or th |
Ordinal number suffix |
V |
Shifts specified number of digits (decimal) |
The following table describes the patterns of date and time values. They can be used for the to_date, to_timestamp, and to_char functions, and the nls_timestamp_format parameter.