PG数据库操作相关问题以及解决
1.删除分表报错有依赖不能删除DROP TABLE products;NOTICE:constraint orders_product_no_fkey on table orders depends on table productsERROR:cannot drop table products because other objects depend on itHINT:Use DROP ..
·
1.删除分表报错有依赖不能删除
DROP TABLE products;
NOTICE: constraint orders_product_no_fkey on table orders depends on table products
ERROR: cannot drop table products because other objects depend on it
HINT: Use DROP ... CASCADE to drop the dependent objects too.
原因如下,有外部依赖这个表,需要使用以下语句强制删除
The error message contains a useful hint: if you do not want to bother deleting all the dependent objects individually, you can run
DROP TABLE products CASCADE;
2.更改表名
alter table 表名 rename to 新表名
3.更改字段名
alter table 表名 rename 字段名 to 新字段名
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献8条内容
所有评论(0)