Database - DISTINCT


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.
Syntax:
SELECT DISTINCT column_name(s)
FROM table_name

Comments

Popular posts from this blog

How to set Java Object into JaxBElement ?

GitLab