W
wimsan
Hi there,
i have a table that has duplicate values (maximum 2) for the field AWK_ID
which is OK because 1 AWK_ID can refer to different products.
i would like to create 1 records for every AWK_ID with information of both
products it refers to
table
awk_id product
1 a
2 b
2 c
3 a
4 a
4 c
the output should look like this
awk_id product1 product2
1 a
2 b c
3 a
4 a c
how can i achieve this ?
regards
Wimsan
i have a table that has duplicate values (maximum 2) for the field AWK_ID
which is OK because 1 AWK_ID can refer to different products.
i would like to create 1 records for every AWK_ID with information of both
products it refers to
table
awk_id product
1 a
2 b
2 c
3 a
4 a
4 c
the output should look like this
awk_id product1 product2
1 a
2 b c
3 a
4 a c
how can i achieve this ?
regards
Wimsan