How to select non duplicate row data from the table of DolphinDB? I found the function distinct
in the manual. I tried the code below, but doesnt work.
select distinct(col1,col2) from table
=====================================
The function [distinct] expects 1 argument(s), but the actual number of arguments is: 2
select distinct([col1,col2]) from table
=====================================
The argument for 'distinct' must be a typed vector
It seems that distinct can only apply to one column. Is there any solution?