标签: sql postgresql
我在CREATE TABLE customers ( customerid integer NOT NULL, customerid2 text NOT NULL, .... ) 中有以下表格:
CREATE TABLE customers ( customerid integer NOT NULL, customerid2 text NOT NULL, .... )
customerid2
如何在其他表中检查@是否用作FK? 假设我会在执行实际丢弃之前删除此列 - 它会检查谁使用它。我如何手动执行该检查?
@