Jump to content

Tricky Data Insertion


d.shankar

Recommended Posts

I have a table "test" with 2 columns "cars" and "bikes"

 

both are null columns..

 

first i insert for cars as "car1" and leave blank(null) for bikes

 

similarly i add "car2" and again leave blank for bikes

 

Now i add "bike1" and it displays like this as it should

 

cars bikes

car1

car2

      bike1

 

 

but i need to have like this

 

cars bikes

car1 bike1

car2

 

Am i clear ?? :P

Link to comment
https://forums.phpfreaks.com/topic/78524-tricky-data-insertion/
Share on other sites

ok here is the table setup

 

insert into test values("car1","") ; // row 1 created

insert into test values("car2","") ; // row 2 created

insert into test values("","bike1") ; // row 3 created

 

Now the table looks like

 

car1

car2

        bike1

 

 

But i need to have like this

 

car1 bike1

car2

 

 

Any idea ?

 

Link to comment
https://forums.phpfreaks.com/topic/78524-tricky-data-insertion/#findComment-397563
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.