select a.* from table1 a join(
    select tel=min(tel),USER_NAME from table1 group by USER_NAME
)b on a.USER_NAME=b.USER_NAME and a.tel=b.tel