I have two columns in sql
        ID      Perils
        1        PES
        1        PEA
        2        PAL
        2        PWH
I wanted a query which can get me
        ID      Perils
        1        PES+PEA
        2        PAL+PWH
Hence concatenating string with delimitor '+' by pivoting on ID
 
    