Oracle 视图 USER_JSON_COLUMNS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 USER_JSON_COLUMNS 会提供一系列包含JSON数据的信息,主要用于针对当前用户的表和索引的列,目的是用来管理JSON格式的列和查看JSON列的元数据。
使用方法:
1. 查看用户中包含JSON类型的表:
SELECT owner, table_name, column_name
FROM user_json_columns
WHERE data_type=’JSON’;
2. 查看用户中所有包含JSON类型的列:
SELECT owner, table_name, column_name
FROM user_json_columns;
3. 查看用户中某个特定表中包含JSON类型的列:
SELECT table_name, column_name
FROM user_json_columns
WHERE table_name = ‘Mytable’;
官方英文解释
USER_JSON_COLUMNS
provides information on the JavaScript Object Notation (JSON) columns for which the user is the owner. Its columns (except for OWNER
) are the same as those in ALL_JSON_COLUMNS
.
See Also:
-
“ALL_JSON_COLUMNS”
-
Oracle XML DB Developer’s
Guide for more information about using JSON with Oracle Database