gpt4 book ai didi

amazon-redshift - Amazon Redshift 获取表的身份列列表

转载 作者:行者123 更新时间:2023-12-01 19:35:30 26 4
gpt4 key购买 nike

如何获取 Amazon Redshift 中表的身份列列表? (使用系统表)

谢谢。

最佳答案

对于那些可能有兴趣了解如何获取 Redshift 数据库中的所有身份列的人。以下查询由 Neil@AWS 发布到 AWS Redshift 论坛:

select 
c.relname,
a.attname
from pg_class c, pg_attribute a, pg_attrdef d
where c.oid = a.attrelid
and c.relkind = 'r'
and a.attrelid = d.adrelid
and a.attnum = d.adnum
and d.adsrc like '%identity%'
order by 1;

关于amazon-redshift - Amazon Redshift 获取表的身份列列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27339811/

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