|
Main Menu
Resources
|
SQL DISTINCT
As we learn before, SQL SELECT statement will allow us to call out all the data from particular table. What if we want to select distinct elements? The SQL Syntax will look like this: SELECT DISTINCT [COLUMN NAME] FROM [TABLE NAME] The DISTINCT clause allows you to remove duplicates from the result set.
Let’s say, we want to know departments from GameScores for people who participate. Table GameScores
SQL statement : SELECT DISTINCT Department FROM GameScores This SQL statement would return all unique Department from the GameScores table Result:
|
|||||||||||||||||||||||||

Printer friendly page