如何使用CQL在Cassandra中切换Keyspace?

时间:2017-01-04 16:31:38

标签: database cassandra cql cassandra-2.0 cql3

我使用USE billKeyspace;输入密钥空间并开始使用它。现在我想退出这个键空间并输入另一个键空间。怎么做?

如果我使用exit;quit;,它会退出cql会话本身,然后我必须再次连接。

3 个答案:

答案 0 :(得分:6)

要切换键空间,除了使用USE otherKeySpace;之外我没有找到任何其他方法。

答案 1 :(得分:6)

您只需使用“use”命令即可切换。

cqlsh>    DESC KEYSPACEs;

system_distributed system_auth system system_traces

cqlsh> use system_distributed;
cqlsh:system_distributed>
cqlsh:system_distributed>
cqlsh:system_distributed> use system_auth;
cqlsh:system_auth>

答案 2 :(得分:0)

您可以在不使用USE命令的情况下执行此操作,如下所示:

 select * from KeySpace1.tbl ;
 select * from KeySpace2.tbl ;