Note
This view is available starting with V5.0.1.
Overview
Displays keyword information.
Columns
Field |
Type |
Nullable |
Description |
|---|---|---|---|
| KEYWORD | varchar(128) | NO | Represents the keyword name. |
| LENGTH | bigint(20) | NO | Represents the length of the keyword. |
| TYPE | varchar(16) | NO | Indicates the syntax category of the keyword. Valid values:
|
| RESERVED | bigint(20) | NO | Indicates whether the word is a reserved keyword. Valid values:
|
Sample query
Retrieves information for a keyword.
obclient> SELECT * FROM oceanbase.V$OB_KEYWORDS LIMIT 1\G
The query result is as follows:
*************************** 1. row ***************************
KEYWORD: accessible
LENGTH: 10
TYPE: SQL
RESERVED: 1
1 row in set
