concatenate RAW data in PL/SQL with R7.3.2
From: <mtsao_at_cas.org>
Date: 1996/08/29
Message-ID: <x6eraoqs58l.fsf_at_mdt26awm.i-have-a-misconfigured-system-so-shoot-me>#1/1
Date: 1996/08/29
Message-ID: <x6eraoqs58l.fsf_at_mdt26awm.i-have-a-misconfigured-system-so-shoot-me>#1/1
In PL/SQL there are concatenation operator and function for VARCHAR2 datatype and its subtype -- "||", concat() -- to put string together such as:
DECLARE
string1 VARCHAR(10) := 'one';
string2 VARCHAR(10) := ' piece';
string3 VARCHAR(20);
BEGIN
string3 := string1 || string2;
END
but there is no such such built-in function for RAW datatype.
Is there any techniques available in PL/SQL to concatenate RAW datatype ?
Thanks in advance, Ming Tsao
--
Received on Thu Aug 29 1996 - 00:00:00 CEST
