gpt4 book ai didi

postgresql - postgresql 中 all_tables 和 all_tab_columns 的等价物是什么

转载 作者:行者123 更新时间:2023-11-29 11:23:19 25 4
gpt4 key购买 nike

我正在尝试运行 oracle 查询

SELECT OWNER,  
TABLE_NAME
FROM ALL_TABLES;

SELECT COLUMN_NAME,
DATA_TYPE,
DATA_LENGTH,
NULLABLE,
COLUMN_ID,
DATA_PRECISION,
DATA_SCALE
FROM ALL_TAB_COLUMNS

在 postgresql 中,但它无法执行,因为 PostgreSQL 没有 ALL_TAB_COLUMNS 和 ALL_TABLES

任何人都可以建议什么是那个的等效查询

最佳答案

ALL_TABLES 等同于(ANSI 标准) View information_schema.tables:http://www.postgresql.org/docs/current/static/infoschema-tables.html

ALL_TAB_COLUMNS 等同于(ANSI 标准) View information_schema.columns:http://www.postgresql.org/docs/current/static/infoschema-columns.html

关于postgresql - postgresql 中 all_tables 和 all_tab_columns 的等价物是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9291218/

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