Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列名からテーブルを見つけるには、db2 sql クエリが必要です。列名はありますが、この列が属するテーブル名がありません。
select TBNAME from sysibm.syscolumns where NAME = '<column name>'
SELECT tabname FROM syscat.columns WHERE colname = 'mycol'