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データベースのテーブルからテーブルコメントをクエリするにはどうすればよいですか?
SYSCAT.TABLESカタログ ビューを見てください。
select remarks from syscat.tables where tabname = 'xyz'
colname,remarks from syscat.columns where tabname='T1' を選択
これは役に立ちます。