sql根据某一个字段重复只取第一条数据

select s.*  
from 
    select *, row_number() over (partition by 指定按哪些字段进行分组,这些字段值相同的记录将在一起编号 order by则是指定在同一组中进行编号时是按照怎样的顺序as group_idx  
    from table_name
) s
where s.group_idx = 1
posted @ 2021-09-07 10:10  大大大江大河  阅读(609)  评论(0)    收藏  举报