重庆思庄Oracle、Redhat认证学习论坛

标题: openguass显示元命令对应的SQL语句的选项 -E [打印本页]

作者: 郑全    时间: 2022-11-17 17:48
标题: openguass显示元命令对应的SQL语句的选项 -E
有时,我们通过元命令看数据库,想看看到底后面执行的SQL语句是什么。

[omm@dbserver1 db1]$ gsql -d postgres -p 26000 -r -q -t
postgres=# \l
db2       | omm   | SQL_ASCII | C       | C     |
postgres  | omm   | SQL_ASCII | C       | C     |
template0 | omm   | SQL_ASCII | C       | C     | =c/omm           +
           |       |           |         |       | omm=CTc/omm
template1 | omm   | SQL_ASCII | C       | C     | =c/omm           +
           |       |           |         |       | omm=CTc/omm

postgres=#


--带上-E后,可以看到对应的SQL语句

[omm@dbserver1 db1]$ gsql -d postgres -p 26000 -r -q -t  -E
postgres=#
postgres=#
postgres=# \l
********* QUERY **********
SELECT d.datname as "Name",
       pg_catalog.pg_get_userbyid(d.datdba) as "Owner",
       pg_catalog.pg_encoding_to_char(d.encoding) as "Encoding",
       d.datcollate as "Collate",
       d.datctype as "Ctype",
       pg_catalog.array_to_string(d.datacl, E'\n') AS "Access privileges"
FROM pg_catalog.pg_database d
ORDER BY 1;
**************************

db2       | omm   | SQL_ASCII | C       | C     |
postgres  | omm   | SQL_ASCII | C       | C     |
template0 | omm   | SQL_ASCII | C       | C     | =c/omm           +
           |       |           |         |       | omm=CTc/omm
template1 | omm   | SQL_ASCII | C       | C     | =c/omm           +
           |       |           |         |       | omm=CTc/omm

postgres=#






欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2