Finds all rows whose value on the stated column doesn't match the specified value.
column
value
The column to filter on.
The value to filter with.
final data = await supabase .from('countries') .select('name, country_id') .neq('name', 'Albania');