postgresql 基础sql
Posted 浩0x208哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql 基础sql相关的知识,希望对你有一定的参考价值。
创建用户和密码:crate user 用户名 with password ‘密码‘ ; 创建
alter user 用户名 with password ’密码‘ ; 修改用户密码
查看用户信息: select * from pg_shadow;
创建库: create database dbname;
切换库: c dbname
创建表: create table filename(id,name);
给用户授权: grant all privileges on databases dbname to username;
查看所有库: l
查看当前库所有表:d
查看表结构: d filename
创建数据库并指定所有者: create database dbname owner username;
查看当前登录用户:select user;
远程连接数据库:修改pg_hba.conf 和postgresql.conf
在IPV4 下加一行: host all all 0.0.0.0/24 md5
上面一行改为:host all all 0.0.0.0/24 trust
以上是关于postgresql 基础sql的主要内容,如果未能解决你的问题,请参考以下文章