目前尚不清楚如何运行查询(或执行 API 调用)来列出所有表。使用 Spanner 可以做到这一点吗?
问问题
1222 次
1 回答
6
啊,看起来这是记录在这里: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 = ''
于 2017-02-21T05:40:06.473 回答