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.
我知道 Oracle 存储过程中参数的命名约定是在参数前面加上“p_”,但是是否允许像 Sql Server 和 Sybase 一样在 Oracle 中使用 @ 符号?
谢谢
不可以。标识符必须以字母开头。
编辑: 当然,@如果你非常喜欢的话,你可以在里面使用带引号的标识符:
@
function f("@parameter" int) return int is begin return "@parameter" + 1; end;