I have two VARCHAR2 columns (V2_01, V2_02) that are being phased out of the application. They are to be replaced by one CLOB (C_01). I need to write a script to take the data from V2_01 and V2_02 and load it into C_01, preferably with a carriage return separate the two values.
For instance:
V2_01 = 'Comment data for first Notes field'
V2_02 = 'More comment data - second Notes field'
C_01 should =
'Comment data for first Notes field
More comment data - second Notes field'
I don't know where to start with this...is there some kind of APPEND statement, or do I need a CONCAT? Any help appreciated...
For instance:
V2_01 = 'Comment data for first Notes field'
V2_02 = 'More comment data - second Notes field'
C_01 should =
'Comment data for first Notes field
More comment data - second Notes field'
I don't know where to start with this...is there some kind of APPEND statement, or do I need a CONCAT? Any help appreciated...