JavaScript: Column is equal to a value

Match only rows where column is equal to value.

To check if the value of column is NULL, you should use .is() instead.

Parameters

Examples

With `select()`

const { data, error } = await supabase
  .from('characters')
  .select()
  .eq('name', 'Leia')