postgres数据库相关操作

1、新增用户并同时设置密码:
create role jixiao with password 'jixiao'

2、新增数据库:
create database jixiao with owner = jixiao

你可能感兴趣的:(postgresql)