Thursday, May 31, 2012

SQL SELECT DISTINCT Statement


In a table, some of the columns may contain duplicate values. This is not a problem, however, sometimes you will want to list only the different (distinct) values in a table.

The DISTINCT keyword can be used to return only distinct (different) values.


SQL SELECT DISTINCT Syntax
SELECT DISTINCT column_name (s) FROM table

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.