postgresql常用命令
# 用户操作命令
# 登录
1、指定参数登录
psql -U username -d database_name -h host -W
1
参数含义: -U 指定用户 -d 要连接的数据库 -h 要连接的主机 -W 提示输入密码。
2、使用 postgres 同名用户后登录
su username
psql
1
2
2
注意:
当不指定参数时 psql 使用操作系统当前用户的用户名作为 postgres 的登录用户名和要连接的数据库名。所以在 PostgreSQL 安装完成后可以通过以上方式登录。
# 修改密码
su - postgres
psql
\password postgres
1
2
3
2
3
# 创建用户
1、系统命令行创建
createuser username
1
2
2
2、PostgresSQL 命令行创建(使用 CREATE ROLE)
CREATE ROLE rolename;
1
2
2
3、PostgresSQL 命令行创建(使用 CREATE USER)
CREATE USER testuser WITH PASSWORD 'testuser';
1
2
3
2
3
CREATE USER 和 CREATE ROLE 的区别在于,CREATE USER 指令创建的用户默认是有登录权限的,而 CREATE ROLE 没有。
# 允许远程访问
在 pg_hba.conf 添加以下命令,配置用户的访问权限:
# TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 0.0.0.0/0 trust
1
2
3
2
3
在 postgresql.conf 添加以下命令:
listen_addresses = '*'
port=5432
logging_collector = on
log_directory = 'pg_log'
log_filename = 'postgresql-%a.log'
1
2
3
4
5
2
3
4
5
# 数据库操作命令
# 创建数据库
CREATE DATABASE testuser_1 OWNER testuser;
1
# 切换数据库
相当于 mysql 的 use dbname
\c dbname
1
# 列举数据库
相当于 mysql 的 show databases
\l
1
# 删除数据库
drop database [数据库名];
1
# 列举表
相当于 mysql 的 show tables
\dt
1
# 查看表结构
相当于 desc tblname,show columns from tbname
\d tblname
1
# 查看索引
\di
1
# 表操作命令
重命名一个表
alter table [表名A] rename to [表名B];
1
删除一个表
drop table [表名];
1
在已有的表里添加字段
alter table [表名] add column [字段名] [类型];
1
删除表中的字段
alter table [表名] drop column [字段名];
1
重命名一个字段
alter table [表名] rename column [字段名A] to [字段名B];
1
给一个字段设置缺省值
alter table [表名] alter column [字段名] set default [新的默认值];
1
去除缺省值
alter table [表名] alter column [字段名] drop default;
1
在表中插入数据
insert into 表名 ([字段名m],[字段名n],......) values ([列m的值],[列n的值],......);
1
修改表中的某行某列的数据
update [表名] set [目标字段名]=[目标值] where [该行特征];
1
删除表中某行数据
delete from [表名] where [该行特征];
delete from [表名];--删空整个表
1
2
2
创建表
create table ([字段名1] [类型1] ;,[字段名2] [类型2],......<,primary key (字段名m,字段名n,...)>;);
1
[原文链接](世界上最先进的开源关系型数据库——PostgreSql常用命令 | 枫叶 (opens new window))
上次更新: 2023/04/26, 16:58:05