MULTI_DISTINCT_COUNT
Returns the count of distinct values. Equivalent to COUNT(DISTINCT).
Analyze Syntax
func.multi_distinct_count(get_column(table, 'dept'))
Analyze Examples
func.multi_distinct_count(get_column(table, 'department'))
┌───┐
│ 5 │
└───┘
SQL Syntax
MULTI_DISTINCT_COUNT(<dept>)
SQL Examples
SELECT MULTI_DISTINCT_COUNT(department) FROM employees;
┌───┐
│ 5 │
└───┘