0
Is there a syntax for 'select distinct'?
If I have rows of transaction date and I want to extract distinct (each member 1 time) list from a column, is there a "select distinct" syntax like there is in SQL?
2 replies
-
You can use the unique function:
unique(field name)
unique(variable)
let x := select Invoices
count(unique(x.CustomerID))
-
Thank you.
Content aside
- 3 yrs agoLast active
- 2Replies
- 623Views