我试图编写一个触发器,它将占用任何超过15的daily_rate并将其放入一个名为valuable_item的新表中。我已经创建了新表,所以我只需要继承所需的数据。以下是我在触发器编辑部分中尝试过的代码:
INSERT INTO valuable_items (catalogue_id,
description,
designer,
type,
daily_rate)
VALUES
(new.catalogue_id,
new.description,
new.designer,
new.type,
new.daily_rate, WHERE daily_rate >= 15
答案 0 :(得分:0)
猜猜你正在寻找这个,因为在触发器内:
RuntimeError: The session is unavailable because no secret key was set. Set the secret_key on the application to something unique and secret.
答案 1 :(得分:0)
试试这个:
<system.web>
<identity impersonate="true" />
</system.web>