is_()
is_()用于检查是否完全相等(null, true, false),找到所有在所述列(column)
上的值与指定的值(value)
完全匹配的记录。
is_
和in_
过滤方法的后缀是_
,以避免与保留的关键字发生冲突。
案例1 (使用select) link
final data = await supabase
.from('cities')
.select('name, country_id')
.is_('name', null);
案例2 (使用update) link
final data = await supabase
.from('cities')
.update({ 'name': 'Mordor' })
.is_('name', null);
案例3 (使用delete) link
final data = await supabase
.from('cities')
.delete()
.is_('name', null);
案例4 (使用rpc) link
// Only valid if the Stored Procedure returns a table type.
final data = await supabase
.rpc('echo_all_cities')
.is_('name', null);