I'm trying to combine code values from different columns into one column to use in a crosstab report....concatinating comes close but I need the values on seperate rows not together on one.
data desired concat
key a b key a b cmb key a b cmb
123 w x 123 w x w 123 w x wx
123 y z 123 w x x 123 w x wx
123 y z y 123 y z yz
123 y z z 123 y z yz
? select a+b as cmb
from table
Many thanks in advance,
Rob
data desired concat
key a b key a b cmb key a b cmb
123 w x 123 w x w 123 w x wx
123 y z 123 w x x 123 w x wx
123 y z y 123 y z yz
123 y z z 123 y z yz
? select a+b as cmb
from table
Many thanks in advance,
Rob