针对没有索引ID的表,我认为最好的方法还是使用临时表<br><br>select top 1 * into #temp_table from aaa order by b,c<br>drop table aaa<br>select * into aaa from #temp_table<br>drop table #temp_table<br><br>因为没有唯一索引,not in的条件很不好判断。
针对没有索引ID的表,我认为最好的方法还是使用临时表<br><br>select top 1 * into #temp_table from aaa order by b,c<br>delete aaa<br>select * into aaa from #temp_table<br>drop table #temp_table<br><br>因为没有唯一索引,not in的条件很不好判断。