Delete Duplicate Record from Table (by using temporary table)
select distinct * into #temp from Marks
Drop table marks
select * into Marks from #temp
HERE YOU WILL FIND ALL TYPE OF TUTORIALS LIKE .NET C#, ASP.NET, ASP.NET MVC, SQL SERVER, JAVACRIPT, JQUERY ETC
No comments:
Post a Comment