I have the following table:
people.name:"Alice","Sam","Thomas","Sara","Walter"
people.age:25,28,40,34,43
people.job:"Developer","Sales","Developer","Developer","Accounting"
people:table people
and I have the following query:
p:select job orderby job asc by job from people
each x in p
print[x]
end
This produces:
DeveloperDeveloperDeveloperSalesAccounting
Can I impose something like SQL’s SELECT DISTINCT keyword on the query?