declare
v number;
c varchar2(20);
begin
select c into v from dual;
exception
when others
then
raise;
end;
在运行此块时,我遇到异常,因为我在c上动态地(假设)作为字符提供输入。我想要加注将打印错误值为C. 有什么方法可以在raise语句中添加C的消息+值。
答案 0 :(得分:0)
添加简单:
Select CONCAT(raise,'C');
将在控制台中打印其值