PG库修改某个表的字段名

  • 更换字段名
    alter table 表名 rename column 字段名 to 新字段名;
  • 更换表名
    alter table 表名 rename to 新表名;

你可能感兴趣的:(sql,sql,数据库,pgsqp,pg)