If there are duplicated elements in a column, how to select the unique elements in a column in DolphinDB?
Asked
Active
Viewed 48 times
1 Answers
1
The function distinct is used to remove the duplicated elements.
t=table(3 1 2 2 3 as x);
select distinct x from t;
Result:

jinwandalaohu
- 226
- 1
- 7