Is it possible to create columns(field's names) from selected values? I created "good" names for columns, but couldn't to create text columns.
I have this:
| ID | ProductID | PropName| PropVal|
----------------------------------------
| 1 | 560 | Color | green |
| 2 | 560 | Family |Resistors|
| 3 | 560 | Series | 375 |
I need this:
| ID | ProductID | Color | Family | Series |
------------------------------------------------
| 1 | 560 | green | Resistors| 375 |