Between Tables
- 23 Dec 2022
- 1 Minute to read
- Print
- DarkLight
Between Tables
- Updated on 23 Dec 2022
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Goal: Create a database table from another table.
High-level Task: Given a DB table, create a new database table. This table should have all the data from the original table in the same format. Preview it with a database source node to verify the data can be queried elsewhere.
Detailed Task:
- Create a new flow.
- Add a new database connection.
- Add a
Database
source node to the canvas. Run the following query (with the correct table name) to select all records:SELECT * FROM IRIS
- Add a
Database
export node to the canvas. Attach theDatabase
source node to this node. - Configure the export node to create a new table named
-IrisRenamed
, preceeded by your initials. Run the node.
Was this article helpful?