Hi,
I have one problem in mysql.
how to split single row into multiple columns in mysql.
my table structure:
I need following output :
I have one problem in mysql.
how to split single row into multiple columns in mysql.
my table structure:
Code:
id salaryhigh salarymedium salarylow ********************************************** 1 1000 100 1 2 2000 200 2
Code:
id saldetails description
***********************************
2 1000 high
100 med
1 low
3 2000 high
200 med
2 low
Comment