Idea

Cameron Pluim avatar image
4 Likes"
Cameron Pluim suggested Abhay Bajpai commented

Can DISTINCT be added as a keyword for queries?

I recently got into a situation where I wanted to know how many distinct values were in a column of a table. It would be nice to be able to use the following:

  1. SELECT COUNT (DISTINCT column-name) FROM table-name
sqlselect query
· 5
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Comment

martin.j avatar image
1 Like"
martin.j commented

The DISTINCT keyword does have its uses, but many problems where you need it can be solved by using the Group by statement: This will give you a list where each new distinction of column name has its own row. Now you can iterate through the distinctions.

SELECT COUNT(*), [column-name] FROM table GROUP BY [column-name]

5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Your Opinion Counts

Share your great idea, or help out by voting for other people's ideas.