不清楚如何运行查询(或执行API调用)来列出所有表。这有可能是扳手吗?
发布于 2017-02-21 05:40:06
啊,看起来这是在这里记录的: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 = ''https://stackoverflow.com/questions/42359411
复制相似问题