情况一:表中存在完全重复的的数据,即所有字段内容都是相同的
createtable # (用户ID int, 姓名 varchar(10), 年龄 int ) insertinto # select111, '张三', 26 unionallselect222, '李四', 25 unionallselect333, '王五', 30 unionallselect111, '张三', 26
方法: selectdistinct*from #
方法: selectdistinct*from #
情况2:表中存在部分数据重复的字段,即 重复数据中至少有一个字段不重复
createtable # (用户ID int, 姓名 varchar(10), 年龄 int, 日期 DateTime ) insertinto # select111, '张三', 262010-02-23unionallselect222, '李四', 252010-03-13unionallselect333, '王五', 302011-03-25unionallselect111, '张三', 262011-07-07
方法:--当两条重,取日期大的一条select*from t a
wherenotexists (select1from t where a.用户ID=用户ID a.姓名=姓名 and 日期>a.日期)
暂时总结欢迎补充