select count distinct postgres code example
Example: postgres count distinct
SELECT
COUNT(DISTINCT column)
FROM
table_name
WHERE
condition;
SELECT
COUNT(DISTINCT column)
FROM
table_name
WHERE
condition;