How To Filter Out Duplications in the Returning Rows in MS SQL Server?
Submitted by: AdministratorIf there are duplications in the returning rows, and you want to remove the duplications, you can use the keyword DISTINCT in the SELECT clause. The DISTINCT applies to the combination of all data fields specified in the SELECT clause. The tutorial exercise below shows you how DISTINCT works:
CREATE TABLE ggl_team (first_name VARCHAR(8),
last_name VARCHAR(8))
GO
INSERT INTO ggl_team VALUES ('John', 'Gate')
GO
INSERT INTO ggl_team VALUES ('John', 'Russell')
GO
INSERT INTO ggl_team VALUES ('John', 'Seo')
GO
INSERT INTO ggl_team VALUES ('John', 'Gate')
GO
INSERT INTO ggl_team VALUES ('James', 'Gate')
GO
INSERT INTO ggl_team VALUES ('Peter', 'Gate')
GO
INSERT INTO ggl_team VALUES ('John', 'Gate')
GO
Submitted by: Administrator
CREATE TABLE ggl_team (first_name VARCHAR(8),
last_name VARCHAR(8))
GO
INSERT INTO ggl_team VALUES ('John', 'Gate')
GO
INSERT INTO ggl_team VALUES ('John', 'Russell')
GO
INSERT INTO ggl_team VALUES ('John', 'Seo')
GO
INSERT INTO ggl_team VALUES ('John', 'Gate')
GO
INSERT INTO ggl_team VALUES ('James', 'Gate')
GO
INSERT INTO ggl_team VALUES ('Peter', 'Gate')
GO
INSERT INTO ggl_team VALUES ('John', 'Gate')
GO
Submitted by: Administrator
</pre>SELECT * FROM ggl_team
GO
first_name last_name
John Gate
John Russell
John Seo
John Gate
James Gate
Peter Gate
John Gate
SELECT DISTINCT * FROM ggl_team
GO
first_name last_name
James Gate
John Gate
John Russell
John Seo
Peter Gate
SELECT DISTINCT last_name FROM ggl_team
Gate
Russell
Seo</pre>
Remember that * in select list represents all columns.
Submitted by: Administrator
GO
first_name last_name
John Gate
John Russell
John Seo
John Gate
James Gate
Peter Gate
John Gate
SELECT DISTINCT * FROM ggl_team
GO
first_name last_name
James Gate
John Gate
John Russell
John Seo
Peter Gate
SELECT DISTINCT last_name FROM ggl_team
Gate
Russell
Seo</pre>
Remember that * in select list represents all columns.
Submitted by: Administrator
Read Online MS SQL Server Job Interview Questions And Answers
Top MS SQL Server Questions
☺ | How To Start SQL Server Browser Service? |
☺ | What Happens If NULL Values Are Involved in Arithmetic Operations? |
☺ | What Is a Transact-SQL Statement Batch in MS SQL Server? |
☺ | How To Use Subqueries with the EXISTS Operators in MS SQL Server? |
☺ | What Happens If Strings Are Casted into Wrong Code Pages in MS SQL Server? |
Top Databases Programming Categories
☺ | RDBMS Interview Questions. |
☺ | SQL Interview Questions. |
☺ | SSRS Interview Questions. |
☺ | Sybase Interview Questions. |
☺ | Database Administrator (DBA) Interview Questions. |