举例:如果Monster出现上述情况
选择“SQL查询分析器”----打开后粘贴以下内容:
——————————————————————————————————
select distinct * into #temp from Monster
truncate table Monster
insert Monster select * from #temp
drop table #temp
举例:如果Monster出现上述情况
选择“SQL查询分析器”----打开后粘贴以下内容:
——————————————————————————————————
select distinct * into #temp from Monster
truncate table Monster
insert Monster select * from #temp
drop table #temp