查看对象

    • 查看命令帮助信息

      例如,查询ABORT的所有语法。

      1. Command: ABORT
      2. Description: abort the current transaction
      3. Syntax:
      4. ABORT [ WORK | TRANSACTION ] ;
      1. \c dbname

      例如,将postgres数据库切换为数据库db_tpcc。

    • 查询所有数据库

        1. openGauss=# \l
        2. Name | Owner | Encoding | Collate | Ctype | Access privileges
        3. -----------+-------+-----------+---------+-------+-------------------
        4. mydb | omm | GBK | C | C |
        5. postgres | omm | SQL_ASCII | C | C |
        6. template0 | omm | SQL_ASCII | C | C | =c/omm +
        7. | | | | | omm=CTc/omm
        8. template1 | omm | SQL_ASCII | C | C | =c/omm +
        9. (4 rows)
      1. 查询当前数据库中的所有表

        示例如下。

        1. openGauss=# \dt
        2. List of relations
        3. Schema | Name | Type | Owner | Storage
        4. --------+-----------------+-------+-------+----------------------------------
        5. public | customer_t1 | table | omm | {orientation=row,compression=no}
        6. public | customer_t1_bak | table | omm | {orientation=row,compression=no}