如何从 DB2 中的列获取表名?

发布于 2024-12-02 22:07:42 字数 46 浏览 5 评论 0原文

我需要 DB2 SQL 查询来根据列名查找表。我有列名,但没有该列所属的表名。

I need the DB2 SQL query to find the table/tables from column name. I have the column name but don't have table name which this column belongs to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

荒岛晴空 2024-12-09 22:07:42
select TBNAME
    from sysibm.syscolumns
    where NAME = '<column name>'
select TBNAME
    from sysibm.syscolumns
    where NAME = '<column name>'
宛菡 2024-12-09 22:07:42
SELECT tabname
    FROM syscat.columns
    WHERE colname = 'mycol'
SELECT tabname
    FROM syscat.columns
    WHERE colname = 'mycol'
寄与心 2024-12-09 22:07:42

对于 DB2/AS400 用户:

SELECT TABLE_SCHEMA, TABLE_NAME 
    FROM QSYS2.SYSCOLUMNS 
    WHERE upper(column_name) = upper('[column_name]')

For DB2/AS400 users:

SELECT TABLE_SCHEMA, TABLE_NAME 
    FROM QSYS2.SYSCOLUMNS 
    WHERE upper(column_name) = upper('[column_name]')
末が日狂欢 2024-12-09 22:07:42

如果您使用的是 Visual Studio Server Explorer,我发现使用以下方法效果最好:

SELECT       TABNAME
FROM         SYSCAT.COLUMNS
WHERE        COLNAME = 'NASR_DESC'

Visual Studio 仍对其进行格式化,但 Visual Studio 插入的格式仍然有效。

希望这对使用 Visual Studio Server Explorer 在 IBM DB2 数据库中搜索已知列名的人有所帮助。

If you are using Visual Studio Server Explorer, I found using the following worked the best:

SELECT       TABNAME
FROM         SYSCAT.COLUMNS
WHERE        COLNAME = 'NASR_DESC'

Visual Studio still formatted it, but the formatting inserted by Visual Studio still worked.

Hope this helps someone searching for a known column name in their IBM DB2 database using Visual Studio Server Explorer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文