SHOW CREATE SPACE¶
The SHOW CREATE SPACE statement shows the creating statement of the specified graph space.
For details about the graph space information, see CREATE SPACE.
Syntax¶
ngql
SHOW CREATE SPACE <space_name>;
Example¶
ngql
nebula> SHOW CREATE SPACE basketballplayer;
+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| Space | Create Space |
+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| "basketballplayer" | "CREATE SPACE `basketballplayer` (partition_num = 10, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(32)) ON default" |
+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+