我遇到问题,看到外键名称。 在db2cc中,我可以从表列表中看到alter选项。但我想知道如何从命令行看到。丢弃那个外键。
答案 0 :(得分:2)
从SYSCAT.REFERENCES中选择constname,其中TABNAME ='< your table>';
答案 1 :(得分:1)
select substr(tabschema,1,16) as tabschema, substr(tabname,1,16) as tabname, keyunique
from syscat.tables
where keyunique > 0