当前位置: 首页 > news >正文

DAV_postgresql_1

本节开始,进行postgresql数据库的再次熟悉与探索,先从基本的温故吧;
psql
\l
\dt 显示表

当不清楚命令使用时候,使用如下

\?
\help
;
postgres=# \?
General
\copyright show PostgreSQL usage and distribution terms
\crosstabview [COLUMNS] execute query and display result in crosstab
\errverbose show most recent error message at maximum verbosity
\g [(OPTIONS)] [FILE] execute query (and send result to file or |pipe);
\g with no arguments is equivalent to a semicolon
\gdesc describe result of query, without executing it
\gexec execute query, then execute each value in its result
\gset [PREFIX] execute query and store result in psql variables
\gx [(OPTIONS)] [FILE] as \g, but forces expanded output mode
\q quit psql
\watch [SEC] execute query every SEC seconds
Help
\? [commands] show help on backslash commands
\? options show help on psql command-line options
\? variables show help on special variables
\h [NAME] help on syntax of SQL commands, * for all commands
Query Buffer
\e [FILE] [LINE] edit the query buffer (or file) with external editor
\ef [FUNCNAME [LINE]] edit function definition with external editor
\ev [VIEWNAME [LINE]] edit view definition with external editor
\p show the contents of the query buffer
https://www.postgresglorg/docs/current/datatype-numeric.html
\r reset (clear) the query buffer
\s [FILE] display history or save it to file
\w FILE write query buffer to file
Input/Output
\copy ... perform SQL COPY with data stream to the client host
\echo [-n] [STRING] write string to standard output (-n for no newline)
\i FILE execute commands from file
\ir FILE as \i, but relative to location of current script
\o [FILE] send all query results to file or |pipe
\qecho [-n] [STRING] write string to \o output stream (-n for no newline)
\warn [-n] [STRING] write string to standard error (-n for no newline)
Conditional
\if EXPR begin conditional block
\elif EXPR alternative within current conditional block
\else final alternative within current conditional block
\endif end conditional block
Informational
(options: S = show system objects, + = additional detail)
\d[S+] list tables, views, and sequences
\d[S+] NAME describe table, view, sequence, or index
\da[S] [PATTERN] list aggregates
\dA[+] [PATTERN] list access methods
\dAc[+] [AMPTRN [TYPEPTRN]] list operator classes
\dAf[+] [AMPTRN [TYPEPTRN]] list operator families
\dAo[+] [AMPTRN [OPFPTRN]] list operators of operator families
\dAp[+] [AMPTRN [OPFPTRN]] list support functions of operator families
\db[+] [PATTERN] list tablespaces
\dc[S+] [PATTERN] list conversions
\dconfig[+] [PATTERN] list configuration parameters
\dC[+] [PATTERN] list casts
\dd[S] [PATTERN] show object descriptions not displayed elsewhere
\dD[S+] [PATTERN] list domains
\ddp [PATTERN] list default privileges
\dE[S+] [PATTERN] list foreign tables
\des[+] [PATTERN] list foreign servers
\det[+] [PATTERN] list foreign tables
\deu[+] [PATTERN] list user mappings
\dew[+] [PATTERN] list foreign-data wrappers
\df[anptw][S+] [FUNCPTRN [TYPEPTRN ...]]
list [only agg/normal/procedure/trigger/window] functions
\dF[+] [PATTERN] list text search configurations
\dFd[+] [PATTERN] list text search dictionaries
\dFp[+] [PATTERN] list text search parsers
\dFt[+] [PATTERN] list text search templates
\dg[S+] [PATTERN] list roles
\di[S+] [PATTERN] list indexes
\dl[+] list large objects, same as \lo_list
\dL[S+] [PATTERN] list procedural languages
\dm[S+] [PATTERN] list materialized views
\dn[S+] [PATTERN] list schemas
\do[S+] [OPPTRN [TYPEPTRN [TYPEPTRN]]]
list operators
\dO[S+] [PATTERN] list collations
\dp [PATTERN] list table, view, and sequence access privileges
\dP[itn+] [PATTERN] list [only index/table] partitioned relations [n=nested]
\drds [ROLEPTRN [DBPTRN]] list per-database role settings
\dRp[+] [PATTERN] list replication publications
\dRs[+] [PATTERN] list replication subscriptions
\ds[S+] [PATTERN] list sequences
\dt[S+] [PATTERN] list tables
\dT[S+] [PATTERN] list data types
\du[S+] [PATTERN] list roles
\dv[S+] [PATTERN] list views
\dx[+] [PATTERN] list extensions
\dX [PATTERN] list extended statistics
\dy[+] [PATTERN] list event triggers
\l[+] [PATTERN] list databases
\sf[+] FUNCNAME show a function's definition
\sv[+] VIEWNAME show a view's definition
\z [PATTERN] same as \dp
Large Objects
\lo_export LOBOID FILE write large object to file
\lo_import FILE [COMMENT]
read large object from file
\lo_list[+] list large objects
\lo_unlink LOBOID delete a large object
Formatting
\a toggle between unaligned and aligned output mode
\C [STRING] set table title, or unset if none
\f [STRING] show or set field separator for unaligned query output
\H toggle HTML output mode (currently off)
\pset [NAME [VALUE]] set table output option
(border|columns|csv_fieldsep|expanded|fieldsep|
fieldsep_zero|footer|format|linestyle|null|
numericlocale|pager|pager_min_lines|recordsep|
recordsep_zero|tableattr|title|tuples_only|
unicode_border_linestyle|unicode_column_linestyle|
unicode_header_linestyle)
\t [on|off] show only rows (currently off)
\T [STRING] set HTML <table> tag attributes, or unset if none
\x [on|off|auto] toggle expanded output (currently off)
Connection
\c[onnect] {[DBNAME|- USER|- HOST|- PORT|-] | conninfo}
connect to new database (currently "postgres")
\conninfo display information about current connection
\encoding [ENCODING] show or set client encoding
\password [USERNAME] securely change the password for a user
Operating System
\cd [DIR] change the current working directory
\getenv PSQLVAR ENVVAR fetch environment variable
\setenv NAME [VALUE] set or unset environment variable
\timing [on|off] toggle timing of commands (currently off)
\! [COMMAND] execute command in shell or start interactive shell
Variables
\prompt [TEXT] NAME prompt user to set internal variable
\set [NAME [VALUE]] set internal variable, or list all if no parameters
\unset NAME unset (delete) internal variable
postgres=#

pg逻辑关系 逻辑结构;
postgres=# \d pg_class
显示pg_class表的表结构:
select oid,datname from pg_database;
select oid,relname from pg_class;

常用的命令切记:
postgres=# \dt[S+] pg_database
List of relations
Schema | Name | Type | Owner | Persistence | Access method | Size | Description
------------+-------------+-------+----------+-------------+---------------+-------+-------------
pg_catalog | pg_database | table | postgres | permanent | heap | 48 kB |
(1 row)

postgres=# \dt pg_database
List of relations
Schema | Name | Type | Owner
------------+-------------+-------+----------
pg_catalog | pg_database | table | postgres
(1 row)

postgres=# \d pg_database
Table "pg_catalog.pg_database"
Column | Type | Collation | Nullable | Default
----------------+-----------+-----------+----------+---------
oid | oid | | not null |
datname | name | | not null |
datdba | oid | | not null |
encoding | integer | | not null |
datlocprovider | "char" | | not null |
datistemplate | boolean | | not null |
datallowconn | boolean | | not null |
datconnlimit | integer | | not null |
datfrozenxid | xid | | not null |
datminmxid | xid | | not null |
dattablespace | oid | | not null |
datcollate | text | C | not null |
datctype | text | C | not null |
daticulocale | text | C | |
datcollversion | text | C | |
datacl | aclitem[] | | |
Indexes:
"pg_database_oid_index" PRIMARY KEY, btree (oid), tablespace "pg_global"
"pg_database_datname_index" UNIQUE CONSTRAINT, btree (datname), tablespace
"pg_global"
Tablespace: "pg_global"

##注意看区别;
postgres=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | ICU Locale | Locale Provider | Access privileges
-----------+----------+----------+---------+-------+------------+-----------------+---------------
--------
postgres | postgres | UTF8 | C | C | | libc |
template0 | postgres | UTF8 | C | C | | libc | =c/postgres +
| | | | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | C | C | | libc | =c/postgres +
| | | | | | | postgres=CTc/postgres
testdb | postgres | UTF8 | C | C | | libc |
yewu | yewu | UTF8 | C | C | | libc |
(5 rows)
postgres=#


查看表所在路径,使用函数:pg_relation_filepath('tabname');
testdb=# select pg_relation_filepath('pg1');
testdb=# \c
You are now connected to database "testdb" as user "postgres".
testdb=#
testdb=# create table pg1(name varchar(20));
CREATE TABLE
testdb=#
testdb=# select pg_relation_filepath('pg1');
pg_relation_filepath
----------------------
base/16387/16396
(1 row)


testdb=# select oid,datname,datdba from pg_database;
oid | datname | datdba
-------+-----------+--------
5 | postgres | 10
16387 | testdb | 10
1 | template1 | 10
4 | template0 | 10
16391 | yewu | 16390
(5 rows)
testdb=#

可以看到,postgres用户在 testdb这个库创建的表 pg1 是存放在oid为16387的testdb这个库下面
的;
testdb=# select oid,relname from pg_class where relname='pg1';
oid | relname
-------+---------
16396 | pg1
(1 row)
testdb=#
[postgres@rac01 data]$ ls -lartsh base/16387/16396
0 -rw------- 1 postgres postgres 0 Jan 21 19:58 base/16387/16396


schema 搜索路径,默认包含public;
show search_path;
set search_path="$user"


查看权限:
显示角色属性(包含系统权限)
\du 或\du+ [username]

查看系统表 pg_roles|pg_user;查看某用户或角色的权限
information schema.table_privileges

显示对象的访问权限列表
\z或\dp [tablename]
 

后面专门有篇章对角色、权限、schema等进行温习;

PG中文社区学习平台可参考:

中文社区:http://www.postgres.cn/docs/14/datatype.html  #14version
                http://www.postgres.cn/docs/15/datatype.html  #15version

相关文章:

  • 前端 AJAX 二、AJAX使用
  • AndroidAOSP定制隐藏某个应用的图标
  • 【Spring详解六】容器的功能扩展-ApplicationContext
  • 【网络编程】几个常用命令:ping / netstat / xargs / pidof / watch
  • TCP...
  • 4部署kibana:5601
  • 网络安全专业好就业吗?
  • django model.object.filter 不等于多个值
  • FFmpeg 是什么?为什么?怎么用?
  • compare-form.vue 的 v 来源(来自父组件index.vue中的row行数据)
  • linux下安装nginx步骤详解(源码安装方式)
  • FFmpeg 命令行全解析:高效音视频处理从入门到精通
  • 玩机日记 12 fnOS使用lucky反代https转发到外网提供服务
  • python 基本用法
  • Mac 提示「未打开“Sketch.app”」Apple 无法验证“Sketch.app”是否包含可能危害Mac安全或泄露隐私的恶意软件
  • Flutter - 基础Widget
  • [ComfyUI]官方已支持Skyreels混元图生视频,速度更快,效果更好(附工作流)
  • 力扣hot100 —— 电话号码字母组合; 子集 (非回溯做法)简单易懂
  • Windows安装NVIDIA显卡CUDAD调用GPU,适用于部署deepseek r1
  • halcon三维点云数据处理(二十七)remove_bin_for_3d_object_localization
  • 竞彩湃|英超欧冠悬念持续,纽卡斯尔诺丁汉能否拿分?
  • 新疆多地市民拍到不明飞行物:几秒内加速消失,气象部门回应
  • 美联储计划裁员约10%
  • 习近平就乌拉圭前总统穆希卡逝世向乌拉圭总统奥尔西致唁电
  • 本周看啥|《歌手》今晚全开麦直播,谁能斩获第一名?
  • 受关税政策影响,沃尔玛将上调部分商品在美售价