PostgreSQL教程

postgreSQL(SQL语音操作数据库)

本文主要是介绍postgreSQL(SQL语音操作数据库),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

操作数据库对象

1. 创建数据库

create database db_yhy with owner = postgres encoding = ‘utf-8’;

2. 数据库修改

alter database db_yhy  rename to db_yihengye;

3. 删除数据库

drop database db_yihengye;

操作数据表对象

1. 创建数据表对象

crate table student(id int, name varchar(30), score numeric(5,2);

2. 修改数据表对象

alter table student rename to student1;

alter table student1 drop column birthday;

3. 删除数据表对象

drop table student1;数据表不存在时会报错

drop table if exists student1; 数据表不存在时会提示不存在,不报错

4. 添加数据库对象字段

alter table student1 add column address varchar(200);

这篇关于postgreSQL(SQL语音操作数据库)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!