I have two tables
Example: class table
| ClassId | Cassname |
| 1 | 10th class |
student table
| classid | stuName | Address |
| 1 | xyz | hyd |
| 1 | abc | hyd |
| 1 | pqr | hyd |
Now my requirement is i want to insert data following way
| classid | stName | Address | stuName | address | stuname | address | ||
| 1 | xyz | hyd | abc | hyd | pqr | hyd |
i want to display multiple columns data in single row
please help me
Thanks inadvance
Suthish NairPosted Jul 30, 2011, 5:57 AM
srinivas PPosted Jul 29, 2011, 5:35 AM
Sam HobbsPosted Jul 28, 2011, 12:32 PM
Suthish NairPosted Jul 28, 2011, 7:19 AM
srinivas PPosted Jul 28, 2011, 3:00 AM
Partydetailes are in partydetais table
Are you got my point?
Suthish NairPosted Jul 28, 2011, 2:07 AM
Benjamin KemnerPosted Jul 28, 2011, 1:52 AM
I think you can not do it exactly in that way you want. But there is the possibility to create a list procedure to create one column with the row data like this:
Ist this a way for you?