| Oracle9i SQL Reference Release 2 (9.2) Part Number A96540-01 |
|
Functions, 53 of 177
hextoraw::=
HEXTORAW converts char containing hexadecimal digits in the CHAR, VARCHAR2, NCHAR, or NVARCHAR2 character set to a raw value.
|
Note: This function does not support |
The following example creates a simple table with a raw column, and inserts a hexadecimal value that has been converted to RAW:
CREATE TABLE test (raw_col RAW(10)); INSERT INTO test VALUES (HEXTORAW('7D'));
|
![]() Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|