作者:帕皮丝汀阿奎莱拉 | 来源:互联网 | 2023-10-17 18:37
该方法使用CREATE TABLE LIKE语句创建原始表的副本,将原始表的数据填充至副本并重命名副本,完成原始表的复制。该方法不继承父表的主键和外键属性,您可以使用ALTER TABLE语句来添加它们。
操作步骤
使用CREATE TABLE LIKE语句创建表customer_t的副本customer_t_copy。
postgres=# CREATE TABLE customer_t_copy (LIKE customer_t);
使用INSERT INTO…SELECT语句向副本填充原始表中的数据。
postgres=# INSERT INTO customer_t_copy (SELECT * FROM customer_t);
删除原始表。
postgres=# DROP TABLE customer_t;
使用ALTER TABLE语句将副本重命名为原始表名称。
postgres=# ALTER TABLE customer_t_copy RENAME TO customer_t;