Cassandar DB:如何以上升或后代的顺序显示describe表的输出?

时间:2018-04-05 13:22:36

标签: cassandra cql cassandra-3.0 cqlsh

我正在尝试执行此cql命令以获取cassandra中的表列表:

cqlsh:myspace> describe tables;

我得到这样的输出:

site                    vehicle                  vehicle_brand         
vehicle_color           employee                 project  
...
... 

我有很多桌子。

是否可以显示以上升或后代顺序显示的表格列表?

如果是,怎么样?

1 个答案:

答案 0 :(得分:3)

您可以通过使用CQL查询查询system_schema.tables表来执行此操作:

select table_name from system_schema.tables 
   where keyspace_name = 'myspace' order by table_name desc;