ilike()
ilike()用于查找所有在所述列(column)
上的值与提供的 模板(pattern)
相符的记录(不区分大小写)。
案例1 (使用select) link
final data = await supabase
.from('cities')
.select('name, country_id')
.ilike('name', '%la%');
案例2 (使用update) link
final data = await supabase
.from('cities')
.update({ 'name': 'Mordor' })
.ilike('name', '%la%');
案例3 (使用delete) link
final data = await supabase
.from('cities')
.delete()
.ilike('name', '%la%');
案例4 (使用rpc) link
// Only valid if the Stored Procedure returns a table type.
final data = await supabase
.rpc('echo_all_cities')
.ilike('name', '%la%');