I am getting this output in mysql query.(which has key value pairs)
-id NAME VALUE
--1 customerName Narendra
--1 customerCountry India
How we can convert this to (single line)
id customerName country
1 Narendra India
I am getting this output in mysql query.(which has key value pairs)
-id NAME VALUE
--1 customerName Narendra
--1 customerCountry India
How we can convert this to (single line)
id customerName country
1 Narendra India