• SQL如何删除重复数据

    在sql中,可以使用select语句删除重复数据,语法为:“select * from 字段 where 字段id in (select 字段id from 字段 group by 字段 having count(字段id) > 1)

    2022-4-23
    57 0 0