I want to merge 2 rows of data into 1 row. I've tried searching on how to do that all i saw was no good.
Here is my sample table
ID | Col1 | Col 2
=====================
1 | value11 | value12
2 | value12 | value22
This is what i want to achieve
ID | Col1 | Col 2 | Col21 | Col22
==========================================
1 | value11 | value12 | value12 | value22
Please help... Thanks in advance.