PLSQL在执行含有&语句的时候会弹窗 &后边的被认为含有参数需要传递:
如:insert into student(no,name,sex,other) value ('001','张三','男','abc&ddd');
解决办法:
insert into student(no,name,sex,other) value ('001','张三','男','abc'||'&'||'ddd');
或者
insert into student(no,name,sex,other) value ('001','张三','男','abc'||chr(38)||'ddd');
参考链接:https://blog.youkuaiyun.com/ablipan/article/details/8650974
PLSQL中&的问题
最新推荐文章于 2022-05-25 16:15:11 发布