Leave a Comment
torsniff 相关
//删除重复数据
delete from torsniff where id in
(
select a.id from
(
SELECT
min(id) as id
FROM
torsniff
GROUP BY
dir
HAVING
count(id) > 1
) a
)