eq()用于匹配列值等于指定值的行。
列
指定值
create table countries (id int8 primary key, name text); insert into countries (id, name) values (1, 'Afghanistan'), (2, 'Albania'), (3, 'Algeria');
const { data, error } = await supabase .from('countries') .select() .eq('name', 'Albania')
{ "data": [ { "id": 2, "name": "Albania" } ], "status": 200, "statusText": "OK" }
要检查column的值是否为NULL,你应该使用.is()来代替。
column
.is()
string类型
要过滤的列
任意类型
用来过滤的值
navigate_before 使用过滤器
neq() navigate_next