PostgreSQL常用命令
作者:
shaun_x | 来源:发表于
2018-04-08 14:56 被阅读0次远程连接
dev:$ psql -U gongchengbing -W -h 127.0.0.1 -p 5432 kong
切换到postgre超级用户
dev:$ sudo su postgres
创建用户
postgres:$ createuser --interactive -P _username_
进入交互终端
postgres:$ psql
创建DB
postgres=# create database _dbname_ owner _username_;
查看所有DB
postgres=# \l
选择数据库
postgres=# \c _dbname_
查看所有表
postgres=# \d
退出终端
postgres=# \q
导出表结构和数据
postgres:$ pd_dump --no-owner --no-acl -f db.sql _db_name_
导入sql
postgres:$ psql -U _owner_ -f db.sql db_name
本文标题:PostgreSQL常用命令
本文链接:https://www.haomeiwen.com/subject/crzkhftx.html
网友评论