Skip to main content

.eq()

Finds all rows whose value on the stated column exactly matches the specified value.

const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.eq('name', 'The shire')

Parameters

  • columnrequiredobject

    The column to filter on.

  • valuerequiredobject

    The value to filter with.

Examples

With select()

const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.eq('name', 'The shire')

With update()

const { data, error } = await supabase
.from('cities')
.update({ name: 'Mordor' })
.eq('name', 'San Francisco')

With delete()

const { data, error } = await supabase
.from('cities')
.delete()
.eq('name', 'Mordor')

With rpc()

// Only valid if the Postgres function returns a table type.
const { data, error } = await supabase
.rpc('echo_all_cities')
.eq('name', 'San Francisco')