Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Post-Insert Oracle 触发器,当触发的表添加了一条记录时,它只是用于在表中插入一行。我的代码是一个简单的插入:
BEGIN INSERT INTO R5CHECKLISTMAP(CLM_CHKLINECODE, CLM_SYSTEMCODE) VALUES(10, 'TEST'); END;
但是,我收到错误:
ORA 01006 - 绑定变量不存在 POST-INSERT 10 在绑定之前
我知道这必须很简单,但我无法弄清楚问题可能是什么。