gpt4 book ai didi

SQL : programmatically determine if table is view

转载 作者:行者123 更新时间:2023-11-29 11:58:46 27 4
gpt4 key购买 nike

如果我需要确定给定的表是否是 View ,我可以使用查询而不是使用 '\d' 来执行此操作吗?我有一个脚本需要审核多个表的删除情况,但不想手动检查所有表。

最佳答案

您可以从 information_schema.tables 找到该信息查看:

select table_type 
from information_schema.tables
where table_schema = 'my_schema' and table_name = 'my_table'

table_type列描述:

Type of the table: BASE TABLE for a persistent base table (the normal table type), VIEW for a view, FOREIGN TABLE for a foreign table, or LOCAL TEMPORARY for a temporary table

关于SQL : programmatically determine if table is view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45491975/

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