- ALL
- java33
- linux32
- 工具17
- 其他14
- 数据库7
- git5
- nas5
- vue5
- 前端5
- ai3
- framework3
- windows3
- app2
- 脚本2
- docker2
- 智能家居2
- hexo2
- 小程序2
- maven2
- spring2
- api1
- 资源1
- mysql1
- markdown1
- 安全1
- python1
- question1
- 运维1
- 数据传输1
- 数据结构1
- nginx1
timescaledb详细使用手册
一.添加timescaledb插件 1.指令添加插件 1234567# 登录su postgrespsql# 列出当前库\l# 添加timescaled 扩展create extension timescaledb; 2.使用图形化工具添加插件 使用pgAdmin4、Dbeaver等工作可直接添加插件 二.普通表转为超表 1.普通超表 12345678910111213141516# 创建普通表,和mysql类似CREATE TABLE sensor_data ( "time" timestamp with time zone NOT NULL, device_id TEXT NOT NULL, location TEXT NULL, temperature NUMERIC NULL, humidity NUMERIC NULL, pm25 NUMERIC );# 建立时间索引CREATE INDEX ON 表名(时间字段 DESC)# 创建超表方式可自由组合SELECT...