Skip to content

Table nodes

Table nodes produce the base common table with no additional options. They take one input node. Create a table node by selecting an existing node and clicking New table node on the new node toolbar floating to the right.

A table node

Configuration

Table nodes have no base query configuration. They only support the standard controls shared by all table nodes.](./index.md#table-nodes).

SQL equivalent

If you clicked “Copy SQL” in the node menu of the node pictured above, you’d get:

sql
WITH
  "p" AS (…)
SELECT
  "ORDER_DATE",
  "PRICE_PER_UNIT",
  "QUANTITY",
  "SHIPPING_ADDRESS",
  "PRODUCT_CODE",
  "CATEGORY",
  "SURVEY_ID"
FROM "p"

In the real version, would show the SQL code for the input node.