postgresql学习笔记(1)——日常维护

    一,常用的元命令

         \l                                 ->查看数据库
         \c   [postgres]             ->查看/切换到postgres库
         \d[x,t,v]                       ->查看所有表、扩展,指定表,指定视图。后面可跟正则。例: \dt pg*
         \da[S]                        ->列表聚合函数,后面可跟正则
         \df *up*                      ->列出函数,后面可跟正则
         \db+                          ->查看表空间
         \du                            ->查看数据库角色
         \dn                            ->列出所有模式(名字空间)
         \h alter table             ->查看alter table相关语法
         \q                              ->退出

二,常用的SQL

        # 当前会话进程号
        a) select pg_backend_pid();    
        # 查看全局MVCC级别
        b) SELECT name, setting FROM pg_settings WHERE name ='default_transaction_isolation';    
        # 导出/导入指定库的全部数据
        c) lt_dump postgres >./pg.data; ltsql postgres <./pg.data;             
        # 基本的建表语句                    
        d) create table users(id serial,
                                         name varchar(20) not null,
                                         age int,
                                         address text,
                                         primary key(id));
           create index i_name on users(name);    
         # 增加/删除/修改一个列
        e) alter table users Add/Drop/Alter column salary money;
        # 将列名ipaddr的类型修改为inet;
        f) alter table computer alter COLUMN ipaddr type inet;    
        # 新增/删除一个权限
        g) grant/revoke update ON user to/from yanwf;        

三,常用数据类型

    1, 数字型
        a) 整型
            名 称                   占用大小             取值范围
            smallint               2字节               -32768 to +32767
            integer                4字节               -2147483648 to +2147483647
            bigint                 8字节               -9223372036854775808 to +9223372036854775807
        b) 浮点型
            名 称                 占用大小             取值范围
            decimal               可变               最高小数点前131072位,以及小数点后16383位
            numeric               可变               最高小数点前131072位,以及小数点后16383位
            real                   4字节              6位十进制精度
            double precision       8字节                  15位十进制精度
        c) 序数类型
            名 称                 占用大小             取值范围
            smallserial          2字节                   1到32767
            serial                4字节                  1到2147483647
            bigserial            8字节                  1到9223372036854775807
    2,字符型
        名 称                                        占用大小
        character varying(n), varchar(n)            有限制的变长
        character(n), char(n)                        定长,空格填充
        text                                        无限变长
    3,网络地址型
        名    字                     占用大小                 描    述
        cidr                     7或19字节                 IPv4和IPv6网络
        inet                     7或19字节                 IPv4和IPv6主机以及网络
        macaddr                 6字节                     MAC地址
        macaddr8                 8 bytes                 MAC地址(EUI-64格式)

你可能感兴趣的:(postgresql,学习,数据库)