aiaiDBA

加微信获取免费职业规划+学习资料,了解年薪50万的DBA是如何练成的

13718043309

010-86462881

PLS-00125: type name expected

PLS-00125: type name expected
Cause: When a constant or variable was declared, its datatype was not specified. For example, the code might look like pi CONSTANT := 3.14159; -- should be CONSTANT REAL := 3.14159 Every constant and variable must have a datatype, which specifies a storage format, constraints, and valid range of values.
Action: Supply the type name

请先 登录 后评论

1 个回答

小智
PLS-00125:预期的类型名称,
.原因:当一个常量或变量被声明时,它的数据类型没有被指定。例如,代码可能看起来像pi CONSTANT:= 3.14159; - 应该是CONSTANT REAL:= 3.14159每个常量和变量必须有一个数据类型,它指定一个存储格式,约束和有效的值范围。,
.操作:提供类型名称,
.
请先 登录 后评论