如何在Google Spanner中查看数据库或表的索引?

时间:2019-03-29 16:58:58

标签: sql cloud google-cloud-spanner

如何查看我的数据库上是否有索引?

如何处理特定的表?

1 个答案:

答案 0 :(得分:3)

有两种找到存在索引的方法。

  1. GCP控制台用户界面:Pantheon,导航至Spanner-> Instance-> Database-> Table。可以在“索引”子标签下找到索引。

  2. 命令行gcloud查询。

    update [table a] a join ( select t.goods, t.type, sum(t.qty) as tqty from [table b] t group by t.goods, t.type ) b on a.goods = b.goods and a.type = b.type set a.qty = a.qty + b.tqty