Cassandra DB:如何按上升或下降顺序显示描述表的输出?

Cassandar DB : How to display output of describe tables in ascendant or descendant order?

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

cqlsh:myspace> describe tables;

我得到这样的输出:

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

我有很多桌子。

是否可以显示按升序或降序显示的表格列表?

如果是,怎么办?

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

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