data-peek
Features

Smart Filters

Filter query results client-side with a visual filter builder

Smart Filters

Smart Filters let you narrow down query results without rewriting SQL. Filters run client-side on already-fetched data.

Adding a Filter

  1. Click the filter icon in the results toolbar
  2. Select a column from the dropdown
  3. Choose an operator
  4. Enter a value
  5. The filter is applied immediately as a chip

Filter Operators

Text Columns

OperatorDescription
containsSubstring match
equalsExact match
starts withPrefix match
ends withSuffix match
is emptyNULL or empty string
is not emptyHas a value

Numeric Columns

OperatorDescription
=Equal to
!=Not equal to
>Greater than
>=Greater than or equal
<Less than
<=Less than or equal
betweenRange (two values)
is emptyNULL

Date Columns

OperatorDescription
equalsExact date match
beforeEarlier than date
afterLater than date
betweenDate range
is emptyNULL

Boolean Columns

OperatorDescription
is trueValue is true
is falseValue is false
is emptyNULL

Stacking Filters

Add multiple filter chips to narrow results further. All filters are combined with AND logic.

Removing Filters

Click the X on any filter chip to remove it, or click Clear All to remove all filters.

Smart Filters are great for exploring a large result set without re-running queries. For server-side filtering, add a WHERE clause to your SQL instead.

On this page