Remove Duplicates

Remove duplicate rows

What It Does

Remove Duplicates keeps only unique rows. Optionally specify columns to determine uniqueness (keeping the first occurrence).

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Remove Duplicates". It's in the Filter & Sort group.

Configuration

FieldTypeRequiredDescription
ColumnsMulti-selectNoColumns to check for duplicates (all columns if empty)
SQL generated under the hood
SELECT DISTINCT * FROM data
-- Or by specific columns:
SELECT DISTINCT ON (email) * FROM data
Try this operation →

Related Operations