mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
🔨Minor fix
This commit is contained in:
parent
b234c6e4e7
commit
df00fdb120
@ -81,7 +81,12 @@ In the screenshot below, you will notice that the node uses the data from the pr
|
||||
|
||||
### 4. TimescaleDB node (Insert)
|
||||
|
||||
This node will push the data from the previous node to the `iss` table in TimescaleDB. If you have created a table with a different name, you can use that table instead.
|
||||
We will insert the data from the previous node to a table named `iss`. To create the table, use the following SQL command.
|
||||
```
|
||||
CREATE TABLE iss(latitued NUMERIC, longitude NUMERIC, timestamp NUMERIC);
|
||||
```
|
||||
|
||||
This node will insert the data from the previous node to the `iss` table in TimescaleDB. If you have created a table with a different name, you can use that table instead.
|
||||
|
||||
1. First of all, you'll have to enter credentials for the TimescaleDB node. You can find out how to do that [here](../../../credentials/TimescaleDb/README.md).
|
||||
2. Enter `iss` in the ***Table*** field.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user