Reputation: 51
I know how to remove duplicates from a table using suppress duplicates or through visibility. Is there a way I can remove duplicates from dataset?
Upvotes: 0
Views: 1113
Reputation:
If you are using a SQL query to obtain your dataset, then you can change your SELECT
to SELECT DISTINCT
.
Upvotes: 1