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.
我正在尝试根据用户在参数表单中输入的参数将参数设置为一个值。在这个触发器中设置参数值的 PL/SQL 语法是什么?
简单地,
:parameter_to_set := <some value>;
如果“某个值”基于用户输入的参数,您可以以相同的方式引用该参数,即前面加一个冒号:
:parameter_to_set := :user_param; -- for example