Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi to all,
I want to insert data from one table to another table. But structure of both table is different. One is column wise and 2nd is row wise. eg is shown below.

table 1::

id parameter id name result Date Patient_Id

1 1 Weight 80 2012-09-30 1

2 2 Systolic Pressure 65 2012-09-30 1

table 2:

id parameter id Weight Systolic_Pressure Date Patient_Id

1 1 80 65 2012-09-30 1

I have table 1 and want to insert data in table format like above format..

Please help me how it is possible...
Posted

1 solution

Iterate through the data from the first table, collect all data for the new row of second table, then insert the record.

You can do this in SQL by using a cursor.
Or you can do this in your program using a foreach loop. (I recommend this for you)

Maybe somebody else wants to write you the actual code, but I don't.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900