SQL SERVER删除重复行 我的数据表中重复的字段 是 stu_id stu_name 唯一字段是id --删除重复列 delete from stu where id not in (select max(id) as id from stu group by stu_id)