Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Break a record up into several record

Re: Break a record up into several record

From: Don Fraser <don_at_clear.net.nz>
Date: 1997/11/13
Message-ID: <64ehrf$2mq@granny.mac.co.nz>#1/1

G.Reulen wrote in message <644kp2$cqg17_at_easy4.worldaccess.nl>...
>Hello everyone
>

I think this will do it - one way anyway

Create view as Long_View
SELECT ID + .1 ID, substr(txt,1,20) txt from long_table UNION
SELECT ID + .2 ID, substr(txt,21,20) txt from long_table UNION
SELECT ID + .3 ID, substr(txt,42,20) txt from long_table Received on Thu Nov 13 1997 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US