Cloud Spanner — `SHOW TABLES` 的等效语法?

Cloud Spanner — Equivalent Syntax for `SHOW TABLES`?

不清楚如何 运行 查询(或进行 API 调用)以列出所有表。这可以用 Spanner 实现吗?

啊,看起来这里记录了这个:https://cloud.google.com/spanner/docs/information-schema。特别是:

SELECT
  t.table_name
FROM
  information_schema.tables AS t
WHERE
  t.table_catalog = '' and t.table_schema = ''