eq()用于匹配列值等于指定值的行。
列
指定值
final data = await supabase .from('cities') .select('name, country_id') .eq('name', 'The shire');
final data = await supabase .from('cities') .update({ 'name': 'Mordor' }) .eq('name', 'San Francisco');
final data = await supabase .from('cities') .delete() .eq('name', 'Mordor');
// Only valid if the Stored Procedure returns a table type. final data = await supabase .rpc('echo_all_cities') .eq('name', 'San Francisco');
navigate_before 使用过滤器
neq() navigate_next