输入banner图图片脚本导航/分类

删除SQL某个表中重复的记录

假如表为Mytable
SELECT distinct * FROM into 临时表 from MyTable
DELETE from MyTable insert into MyTable
SELECT * FROM 临时表 
drop table 临时表