gpt4 book ai didi

google-bigquery - bigquery 数据集中所有表的行数

转载 作者:行者123 更新时间:2023-12-03 08:02:57 25 4
gpt4 key购买 nike

我有一个包含许多表的数据集。有没有一种简单的方法来查询显示 table_name 和该表中的行数的输出,而不必对数据集中的每个表执行 count(*) ?

最佳答案

是的,您可以做到这一点,查询元数据:

SELECT
dataset_id,
table_id,
# Convert size in bytes to GB
ROUND(size_bytes/POW(10,9),2) AS size_gb,
# Convert creation_time and last_modified_time from UNIX EPOCH format to a timestamp
TIMESTAMP_MILLIS(creation_time) AS creation_time,
TIMESTAMP_MILLIS(last_modified_time) AS last_modified_time,
row_count,
# Convert table type from numerical value to description
CASE
WHEN type = 1 THEN 'table'
WHEN type = 2 THEN 'view'
ELSE
NULL
END
AS type
FROM
project_id.dataset_id.__TABLES__
ORDER BY
size_gb DESC;

关于google-bigquery - bigquery 数据集中所有表的行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73392837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com