select s.*
select
s.*
from
(
*, row_number() over (partition
by
[手机号]
order
[要过滤的字段])
as
group_idx
table_name
) s
where
s.group_idx = 1