本文主要是介绍通过sql修改pg数据库的表结构,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
首先pg数据库是支持sql标准的,所以我们可以使用标准sql对pg进行操作
1、修改一个表的名称--使用rename to关键字
alter table student rename to student1;
2、修改一个字段的名称--使用rename xx to xx
alter table student1 rename name to student_name;
3、修改一个字段的类型--使用alter
alter table student1 alter column student_name type varchar(40);
4、删除一个表子段--使用drop(注意:在删除的时候同时会删除该字段的所有数据,需要提前按需备份)
alter table student1 drop column student_name;
5、在表中添加一个字段--使用add
alter table student1 add column student_address type varchar(200);
6、删除一个表
drop table student1; drop table if exists student1;
这篇关于通过sql修改pg数据库的表结构的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!