Oracle 视图 ALL_OPERATORS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图 ALL_OPERATORS 中包含着数据库系统中定义的所有操作符的详细信息。使用这个视图,可以查询关于操作符的序列,名称,正面,反面等等。
ALL_OPERATORS 视图是用来跟踪操作符在数据库中的使用的,特别是当检查已经定义的操作符使用的符号或者函数的时候。它可以帮助识别数据库中内置操作符与用户定义的操作符之间的区别,也可以提供可识别但唯一的关注点,以帮助调试查询表达式和PL/SQL块。
使用方法:
要使用 ALL_OPERATORS 视图,首先需要使用 SELECT 子句,然后根据需要选择字段(例如名称),然后扩展到 WHERE 子句中的选项,以突出需要检查的信息。例如,要检查名为 ADD_OPERATOR 的操作符的信息:
SELECT name, operator
FROM all_operators
WHERE name = ‘ADD_OPERATOR’;
官方英文解释
ALL_OPERATORS
describes the operators accessible to the current user.
Related Views
-
DBA_OPERATORS
describes all operators in the database. -
USER_OPERATORS
describes the operators owned by the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the operator |
|
|
|
Name of the operator |
|
|
|
Number of bindings associated with the operator |
See Also:
-
“DBA_OPERATORS”
-
“USER_OPERATORS”