Asp.net Solution | sql tips

Here Reader, We are provide all question yhose asked in interview. you are read this blog and prepare for asp.net interview.

get only unique row and delete all duplicate row

delete from table1 where                
EmpID in(select cId from table1 group by cid having count(*) >1)
Posted by deepak at 11:22 pm No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: get only unique value in sql server

delete duplicate value in sql server

DELETE
FROM MyTable
WHERE ID NOT IN
(
SELECT MAX(ID)
FROM MyTable
GROUP BY column1,
column)
Posted by deepak at 11:21 pm No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: delete duplicate value
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • state management
     More Details :  Live Training in jaipur State management is the process by which you maintain state and page information over multip...
  • Check UserName Email Availability In Asp.Net Ajax
    For this create a table Users in sql server database with ID,Uname,emlAddress columns  and add some records in it. Add ScriptManag...
  • Rename database in sql 2008
    Rename Database in sql server 2008 1.        How to create database in sql server 2008 USE Master; Go CREATE DATABASE SALA...
  • MultiPle Inheritance
    Can you use multiple inheritance in .NET? .NET supports only single inheritance. However the purpose is accomplished using multiple inte...
  • What is a base class and derived class?
    A class is a template for creating an object. The class from which other classes derive fundamental functionality is called a base cla...
  • Cursor in SQL
    We can say that cursor is row pointer in a set of rows (result set).Which points a single row at time in result set. But can move to other...
  • get only unique row and delete all duplicate row
    delete from table1 where EmpID in(select cId from table1 group by cid having count(*) >1)
  • ExecuteScalar Example In Asp.Net C#
    string strConnection = ConfigurationManager.ConnectionStrings[ "ConnectionString" ].ConnectionString;   string strSelect =...

Blog Archive

  • ▼  2014 (3)
    • ▼  April (2)
      • get only unique row and delete all duplicate row
      • delete duplicate value in sql server
    • ►  March (1)
  • ►  2013 (3)
    • ►  March (3)
  • ►  2012 (19)
    • ►  June (19)

About Me

deepak
View my complete profile
Simple theme. Powered by Blogger.