DESCRIBE INDEX¶
DESCRIBE INDEX
can get the information about the index with a given name, including the property name (Field) and the property type (Type) of the index.
Syntax¶
DESCRIBE {TAG | EDGE} INDEX <index_name>;
Examples¶
nebula> DESCRIBE TAG INDEX player_index_0;
+--------+--------------------+
| Field | Type |
+--------+--------------------+
| "name" | "fixed_string(30)" |
+--------+--------------------+
nebula> DESCRIBE TAG INDEX player_index_1;
+--------+--------------------+
| Field | Type |
+--------+--------------------+
| "name" | "fixed_string(10)" |
| "age" | "int64" |
+--------+--------------------+
Last update:
January 14, 2022