PostgreSQL Schema
Posted lonelyrains
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL Schema相关的知识,希望对你有一定的参考价值。
--查所有数据表
SELECT
tables.table_name,
tables.table_schema,
tables.table_type
FROM
information_schema.tables
Where
tables.table_name like '%DATA_HISTORY%'
order by tables.table_name
--查数据表的所有字段
SELECT
*,
column_name,
data_type
FROM
information_schema.columns
WHERE
table_name = 'DATA_HISTORY_20211025_001';
-- 查字段值
SELECT
"DATA_HISTORY_2020"."time",
"DATA_HISTORY_2020"."data1",
"DATA_HISTORY_2020"."data2",
FROM
public."DATA_HISTORY_2020",
-- 查字段值
SELECT time,"data1"
FROM "DATA_HISTORY_2021"
WHERE time >= 637708000000000000 And time <=637709000000000000
以上是关于PostgreSQL Schema的主要内容,如果未能解决你的问题,请参考以下文章