如果 table 中的两个值与我计划插入的值相同,如何制定停止插入行的策略
How do I make a policy to stop inserting a row if two values from the table are the same as the values I plan to insert
我需要在插入新行之前检查是否已进行具有相同时间戳和产品 ID 的预订。
我正在努力制定这项政策,如果有人能提供帮助,我会很棒。
这是我的 table 的架构:
create table Bookings (
id bigint not null primary key,
created_at timestamp default now(),
start timestamp default now(),
name character,
user_id uuid,
notes text,
product_id bigint references Services (id),
status text not null,
owner_id uuid default uuid_generate_v4()
);
我试过使用触发器但没有成功,我做了一个函数来检查是否有一行具有相同的时间戳和产品 ID,时间戳和产品作为输入,bool 作为输出。起初我以为我可以在政策中使用它,但我收到了一些错误,指出该功能不存在。
create or replace function same_time_bookings(bookingtime timestamp, product int)
returns boolean
as
$$
declare
returnbool boolean;
begin
SELECT case when COUNT(*) > 0
then 0
else 1
end into returnbool from "Bookings" where
product_id = product
and extract(year from start) = extract(year from bookingtime)
and extract(month from start) = extract(month from bookingtime)
and extract(day from start) = extract(day from bookingtime)
and extract(hour from start) = extract(hour from bookingtime);
return returnbool;
end;
$$ language plpgsql;
您需要为 2 列 product_id
和 start
创建唯一约束。这样您就可以拥有多个具有相同 product_id 但不同时间戳的行。
create table Bookings (
id bigint not null primary key,
created_at timestamp default now(),
start timestamp default now(),
product_id bigint,
UNIQUE (product_id, start) -- Add this
);
演示在 DBfiddle
我需要在插入新行之前检查是否已进行具有相同时间戳和产品 ID 的预订。
我正在努力制定这项政策,如果有人能提供帮助,我会很棒。
这是我的 table 的架构:
create table Bookings (
id bigint not null primary key,
created_at timestamp default now(),
start timestamp default now(),
name character,
user_id uuid,
notes text,
product_id bigint references Services (id),
status text not null,
owner_id uuid default uuid_generate_v4()
);
我试过使用触发器但没有成功,我做了一个函数来检查是否有一行具有相同的时间戳和产品 ID,时间戳和产品作为输入,bool 作为输出。起初我以为我可以在政策中使用它,但我收到了一些错误,指出该功能不存在。
create or replace function same_time_bookings(bookingtime timestamp, product int)
returns boolean
as
$$
declare
returnbool boolean;
begin
SELECT case when COUNT(*) > 0
then 0
else 1
end into returnbool from "Bookings" where
product_id = product
and extract(year from start) = extract(year from bookingtime)
and extract(month from start) = extract(month from bookingtime)
and extract(day from start) = extract(day from bookingtime)
and extract(hour from start) = extract(hour from bookingtime);
return returnbool;
end;
$$ language plpgsql;
您需要为 2 列 product_id
和 start
创建唯一约束。这样您就可以拥有多个具有相同 product_id 但不同时间戳的行。
create table Bookings (
id bigint not null primary key,
created_at timestamp default now(),
start timestamp default now(),
product_id bigint,
UNIQUE (product_id, start) -- Add this
);
演示在 DBfiddle