Answers for "postgres unique count"

SQL
2

postgres count distinct

SELECT 
   COUNT(DISTINCT column) 
FROM 
   table_name
WHERE
   condition;
Posted by: Guest on November-18-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language