简体   繁体   English

AWS Athena Table 每列中的行数

[英]Number of rows in each column of AWS Athena Table

Is there any way to find the total number of rows in the AWS Athena table.有什么办法可以找到 AWS Athena 表中的总行数。 I used the following SQL query which only shows the columns and their data types.我使用了以下仅显示列及其数据类型的 SQL 查询。

DESCRIBE  Table_name

Have you tried a simple query?您是否尝试过简单的查询?

select count(*)
from tablename;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM