Column is greater than a value
Match only rows where column
is greater than value
.
Parameters
- columnREQUIREDstring
The column to filter on
- valueREQUIREDany
The value to filter with
const { data, error } = await supabase
.from('countries')
.select()
.gt('id', 2)