是否可以创建一个触发器,在表 2 更新后立即输出一个从表 1 中选择字段 1 的 CSV 文件?
我试过使用
CREATE OR ALTER trigger test_a0 for Table 2
active after insert or update position 0
AS
begin
if (updating and new.field1 is not null) then
output ('C:\test\test.csv');
select field1 from table1;
output;
commit;
end