Node-RED
开源文化 ThingsBoard 开源中间件 Kubernetes DevOps KubeEdge EdgeX Foundry Node-RED
Documentation > Node-RED应用 > PostgreSQL

On this page

PostgreSQL

一、概述

1.PostgreSQL

1
2
3
4
82.157.166.86
33047
postgres
postgres

2.node-red-contrib-postgresql

1
https://flows.nodered.org/node/node-red-contrib-postgresql

二、Node-RED

1.查询数据

1.1.配置流程

1.2.测试

2.插入数据

2.1.配置流程

1
2
3
INSERT INTO student(name,sex) VALUES('aaa', 'bbb');

INSERT INTO student VALUES('aaa', 'bbb');

2.2.测试

3.更新数据

3.1.配置流程

1
UPDATE student SET sex='45' where name = 'tom'

3.2.测试

4.删除数据