码迷,mamicode.com
首页 > 数据库 > 详细

postgresql 基础sql

时间:2018-07-09 19:15:33      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:创建   res   shadow   name   postgresq   conf   table   结构   ges   

创建用户和密码: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

标签:创建   res   shadow   name   postgresq   conf   table   结构   ges   

原文地址:https://www.cnblogs.com/haoge92/p/9284917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!