select REPLACE(REPLACE(REPLACE(a,'102','风'),'105','雪'),'203','雷') from
(select'102|105' a
union all
select '102' a
union all
select '203' a
union all
select '105|203' a) table1
select a, REPLACE(REPLACE(REPLACE(a,'102','风'),'105','雪'),'203','雷') from
(select'102|105' a
union all
select '102' a
union all
select '203' a
union all
select '105|203' a) table1