Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> storing data horizontal vs vertical using pl/sql
Hi Team,
Can someone help me in moving the data from one table into multiple tables.
The situation is:
I have a table called hospital that contains the below columns:
acct#, medrec#, diagnosis(dx1), dx2,dx3,dx4.... dxN
Right now i have everythign in one table called hospital. But management requires this data to be split into 2 tbales.
1 is the header table which should contain only acct#,medrec# 2. the second table(line items) should be able to hold the diagnosis information.
the second table strucure is like this:
desc ICD9_DX
acct# number,
mr# number,
dx number
position number
the hospital table (main table) will hold data like this for diagnosis: 101.1, 980.0, 7878.1, 7484.1, 5734.4 ..............
But this diagnosis should store like this in the ICD_9_DX table:
diagnosis position
101.1 1 980.0 2 7878.1 3 7484.1 4 5734.4 5
can someone give me some hint how this can be achieved with pl/sql.
Thakns in advance,
Raj
![]() |
![]() |