Removing Duplicates through SQL Query Suppose we have a table in SQL Server, that has duplicates in it.
CREATE TABLE T1
(
ProductName varchar(50)
)
INSERT INTO T1
VALUES
(‘Computer’),
(‘Computer’),
(‘Printer’),
(‘Printer’),
(‘Printer’),
(‘Scanner’),
(‘Scanner’),
(‘Scanner’),
(‘Scanner’),
(‘Camera’),
(‘Flash...
by Nauman at February 14th, 2010 at 09:02 am