------解决方案-------------------- select B.name,max(B.phone),max(B.address) from
( select A.name,
case when A.phone is null then "" end,
case when A.address is null then "" end
from table A) B
please check it out
------解决方案-------------------- group by B.name ------解决方案--------------------