select * from videofile
where Id not in 
(
select Min(Id) from videofile
group by [Name]
)
其中Id为主键,Name为重复项名称

相关文章: