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.
好吧,我需要按逻辑顺序列出我的 postgres 数据库的所有表,以删除数据而不会出现任何外键问题。
我怎样才能找到这样的信息?
只有我需要列出表名。没有更多信息。
提前致谢
如果您需要删除数据,那么有以下类似的问题:删除数据级联
如果您想删除表格,请使用drop table x cascade? docs使用CASCADEpostgres 将自动删除所有依赖对象 - 表,视图,...
drop table x cascade
CASCADE