起因

在postgress下删除表的时候报错
postgres 无法删除表

解决

简单的百度了一下,有些人说是用户权限的问题,需要切换到库的拥有者下删除,但是切换后还是没有解决···
最后换了一种方式搜索,不直接搜索报错命令,直接搜postgres无法删除表的解决方法,成功解决~

还是依赖问题
DROP TABLE [table] CASCADE;
postgres 无法删除表

参考:https://www.postgresql.org/docs/8.3/ddl-depend.html

相关文章:

  • 2021-12-12
  • 2021-07-29
  • 2022-01-29
  • 2022-12-23
  • 2022-02-13
  • 2022-12-23
  • 2021-05-05
  • 2021-04-20
猜你喜欢
  • 2022-12-23
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-27
相关资源
相似解决方案