user299404
user299404

Reputation: 51

BIRT DataSet Remove duplicates

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

Answers (1)

user359040
user359040

Reputation:

If you are using a SQL query to obtain your dataset, then you can change your SELECT to SELECT DISTINCT.

Upvotes: 1

Related Questions