So i have to columns in my table one called spend and one save.
what I would like to do is join the two so that is says offers and has the spend|save
Say I have table as
spend save
30 10
Output I want is
spend save dummyCol
30 10 30|10
So you just want to concatenate them? Use
CONCAT_WS()to concatenate with a pipe separator: