1

我想except在 supbase 中创建此查询,但在day列中使用参数。例如:

CREATE VIEW employees_without_registering AS 
  SELECT employees.id
  FROM employees
  EXCEPT
  SELECT "idEmployee" FROM registers WHERE "day"='2021-07-25'

我尝试的是在查询编辑器中创建一个视图,然后尝试使用以下内容访问结果:

await supabase.from('employees_without_registering')
  .select('*');

但结果仅限于该查询。我想根据我的选择改变一天。

也许我的方法很糟糕,这可以通过 supbase api 的另一种方式解决,但我想听听有关如何解决这个问题的建议。

4

1 回答 1

3

您将需要为此编写一个存储函数并使用 supabase.rpc("get_my_complex_query",{parameter:1})

转到仪表板上的 SQL 查询编辑器,然后:

drop function if exists get_my_complex_query;
create function get_my_complex_query (parameter int)
RETURNS TABLE(column1 integer, column2 varchar) AS
$$
BEGIN
  return query SELECT column1, column2 FROM "TableName1"
    INNER JOIN "TableName2" ON "TableName1".column = "TableName2".column 
    WHERE "Table2".column = parameter;
END;
$$
language plpgsql volatile;

以下是一些有用的链接以获取更多详细信息:

https://www.postgresqltutorial.com/introduction-to-postgresql-stored-procedures/

https://www.postgresql.org/docs/9.1/plpgsql-declarations.html

https://www.postgresqltutorial.com/plpgsql-function-returns-a-table/

您的另一个选择是在客户端过滤您的视图:

await supabase.from('employees')
  .select('id')
  .neq("day","2021-07-25");
于 2021-09-21T19:33:47.913 回答