How can I get this result?
Hello,
I have a table 'txomin' with this data:
id c1 c2 c3
----------------------------
1 Y
1 N
1 Y
2 N
2 N
2 Y
.......
The result I need is:
id c1 c2 c3
----------------------------
1 Y N Y
2 N N Y
......
How can I get this?
Thanks in advance
id c1 c2 c3
----------------------------
1 Y
1 N
1 Y
2 N
2 N
2 Y
.......
The result I need is:
id c1 c2 c3
----------------------------
1 Y N Y
2 N N Y
......
How can I get this?
Thanks in advance
0