List true tables only in Athena

0

I'd like to have a single query which lists all tables in a athena database excluding views.

There is

SHOW TABLES

which returns tables as well as views. I don't want to call the latter followed by a SHOW VIEWS and then separate those in my code but have that same behavior in one single call.

How can i achieve this?

已提问 2 年前312 查看次数
1 回答
0

Hello,

Instead of SHOW TABLES, how about using the information_schema table?

SELECT * 
FROM information_schema.tables
WHERE table_schema = 'database' 

If you want to pull views separately, query the information_schema.views table.

profile pictureAWS
专家
Chris_G
已回答 2 年前
  • Hi, thanks for your response. That doesn't work.

    The view in my database is listed in information_schema.tables while information_schema.views is empty. How is that possible at all?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则