QuestDB 节点(QuestDB node)#
使用 QuestDB 节点在 QuestDB 中自动化工作,并将 QuestDB 与其他应用集成。n8n 支持执行 SQL 查询并在数据库中插入行。
🌐 Use the QuestDB node to automate work in QuestDB, and integrate QuestDB with other applications. n8n supports executing an SQL query and inserting rows in a database with QuestDB.
本页列出了 QuestDB 节点支持的操作列表以及更多资源的链接。
🌐 On this page, you'll find a list of operations the QuestDB node supports and links to more resources.
凭证
请参阅 QuestDB 凭据 以了解有关设置身份验证的指南。
操作(Operations)#
- 执行 SQL 查询。
- 向数据库中插入行。
模板和示例(Templates and examples)#
节点引用(Node reference)#
指定列的数据类型(Specify a column's data type)#
要指定列的数据类型,请在列名后附加 :type,其中 type 是你想为该列指定的数据类型。例如,如果你想为列 id 指定类型 int,为列 name 指定类型 text,你可以在 Columns 字段中使用以下代码片段:id:int,name:text。
🌐 To specify a column's data type, append the column name with :type, where type is the data type you want for column. For example, if you want to specify the type int for the column id and type text for the column name, you can use the following snippet in the Columns field: id:int,name:text.