Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 562 Bytes

File metadata and controls

22 lines (17 loc) · 562 Bytes

SHOW INDEXES 语法

SHOW {TAG | EDGE} INDEXES

SHOW INDEXES 用于列出已创建完成的标签或边类型的索引信息。SHOW INDEXES 返回以下字段:索引 ID 和 索引名称。

例如:

nebula> SHOW TAG INDEXES;
=============================
| Index ID | Index Name     |
=============================
| 6        | player_index_1 |
-----------------------------
| 7        | player_index_0 |
-----------------------------

如何创建索引请参考 索引 文档。