Pages

Ads 468x60px

Delete Duplicate Record from Table (by using temporary table)

Delete Duplicate Record from Table (by using temporary table)





select distinct * into #temp from Marks
Drop table marks
select * into Marks from #temp

No comments:

Post a Comment