Snowflake Comparison¶
DuckDB Semantic Views is modeled on Snowflake’s CREATE SEMANTIC VIEW SQL DDL interface. If you have used Snowflake semantic views, much of the syntax and concept model will be familiar. This page maps the key concepts and calls out the differences.
Note
Snowflake has two distinct interfaces for semantic views: the SQL DDL (CREATE SEMANTIC VIEW)
and the older YAML spec (CREATE SEMANTIC VIEW FROM YAML, designed for Cortex Analyst).
All comparisons on this page target the SQL DDL interface only. The YAML spec includes
concepts like time_dimensions, custom_instructions, and access_modifier that
exist to serve the AI SQL generation layer and have no equivalent in the SQL DDL.
Concept Mapping¶
Concept |
Snowflake SQL DDL |
DuckDB Semantic Views |
|---|---|---|
Define a semantic view |
|
|
Table declarations |
|
|
Relationships |
|
|
Dimensions |
|
|
Metrics (measures) |
|
|
Reusable row-level expressions |
|
|
Metric composition |
Derived metrics (metric referencing other metrics) |
Derived metrics (same pattern) |
Semi-additive metrics |
|
|
Window function metrics |
|
|
Metadata annotations |
|
|
Access modifiers |
|
|
Materializations / pre-aggregation |
Not part of Snowflake’s |
|
Query interface |
Direct SQL with semantic resolution |
semantic_view() table function |
Wildcard selection |
|
|
View inspection |
|
|
List views |
|
|
Terse view listing |
|
|
Column listing |
|
|
Filter by scope |
|
|
Retrieve DDL text |
|
|
Alter a view |
|
ALTER SEMANTIC VIEW (RENAME TO, SET COMMENT, UNSET COMMENT) |
Drop a view |
|
Syntax Alignment¶
The DDL syntax is intentionally close to Snowflake’s. The clause order (TABLES, RELATIONSHIPS, FACTS, DIMENSIONS, METRICS) matches Snowflake, and the entry syntax within each clause follows the same pattern.
Note
Syntax conveniences for porting.
Added in version 0.11.0.
Several Snowflake spellings are accepted to reduce friction when porting DDL: the
table alias in TABLES is optional (TABLES (orders PRIMARY KEY (id)), matching
Snowflake’s [alias AS] table); a view-level COMMENT = '...' may appear in the
trailing position after the last clause; PUBLIC is accepted on dimensions;
WITH SYNONYMS (...) is accepted without the =; and DESC SEMANTIC VIEW is
accepted as an abbreviation of DESCRIBE SEMANTIC VIEW. See
CREATE SEMANTIC VIEW.
-- Snowflake has no AS keyword before the body clauses.
CREATE SEMANTIC VIEW analytics
TABLES (
o AS orders,
c AS customers
)
RELATIONSHIPS (
order_customer AS o(customer_id) REFERENCES c
)
DIMENSIONS (
c.customer_name AS c.name,
o.region AS o.region
)
METRICS (
o.revenue AS SUM(o.amount)
);
CREATE SEMANTIC VIEW analytics AS
TABLES (
o AS orders PRIMARY KEY (id),
c AS customers PRIMARY KEY (id)
)
RELATIONSHIPS (
order_customer AS o(customer_id) REFERENCES c
)
DIMENSIONS (
c.customer_name AS c.name,
o.region AS o.region
)
METRICS (
o.revenue AS SUM(o.amount)
);
Key Differences¶
Primary Key Declarations¶
Note
PRIMARY KEY declarations in the TABLES clause are optional at the syntax
level, but any table used as the target of a RELATIONSHIPS entry needs a key
the join can resolve against — either a PRIMARY KEY / UNIQUE declaration on
that table, or an explicit REFERENCES target(columns) list on the foreign side.
Snowflake resolves PK/FK metadata directly from its catalog, so its SQL DDL does not
require explicit PRIMARY KEY declarations. DuckDB Semantic Views takes the opposite
stance: a PRIMARY KEY in a semantic view is a logical assertion you make, not a
physical constraint imported from the catalog.
Changed in version 0.10.0: Automatic PK inference from DuckDB’s duckdb_constraints() catalog was removed
(breaking). Earlier releases imported a native table’s physical PRIMARY KEY at
CREATE time when the TABLES entry declared none; this fallback is gone. You
must now declare the key explicitly, whether the table is a native DuckDB table or an
external source. Migration: add a PRIMARY KEY (...) (or UNIQUE (...)) clause to
any TABLES entry that previously relied on the auto-fallback, or use
REFERENCES target(columns) on the referencing side.
Tip
This uniform rule is convenient for data engineers using DuckDB with Iceberg,
Parquet, CSV, or Postgres sources: those catalogs never surfaced PK/FK metadata
through duckdb_constraints() anyway, so declaring keys in the TABLES clause was
always required for them. Now native DuckDB tables follow the same explicit-declaration
rule, so there is one consistent model regardless of data source.
-- Every table used as a join target declares its key explicitly,
-- regardless of whether it is a native DuckDB table or an external source.
CREATE SEMANTIC VIEW analytics AS
TABLES (
o AS orders PRIMARY KEY (id),
c AS customers PRIMARY KEY (id)
)
RELATIONSHIPS (
order_customer AS o(customer_id) REFERENCES c
)
DIMENSIONS (c.name AS c.name)
METRICS (o.revenue AS SUM(o.amount));
If a table involved in a RELATIONSHIPS entry has no primary key from an explicit
declaration, the extension raises an error at CREATE time:
Table 'X' has no PRIMARY KEY. Specify referenced columns explicitly: REFERENCES X(col).
This prevents the extension from synthesizing an incorrect JOIN ON clause.
Query Interface¶
Warning
DuckDB Semantic Views uses a table function for queries, not direct SQL.
In Snowflake, you can write standard SQL against a semantic view and the system resolves dimensions and metrics. In DuckDB, you use the semantic_view() table function with explicit dimension and metric names.
-- DuckDB: table function with named lists
SELECT * FROM semantic_view('analytics',
dimensions := ['region'],
metrics := ['revenue']
);
-- Snowflake: equivalent SEMANTIC_VIEW clause. The view name and the
-- dimension / metric references are bare identifiers (not string literals),
-- and there is no comma between the view name and the DIMENSIONS / METRICS
-- keywords.
SELECT * FROM SEMANTIC_VIEW(
analytics
DIMENSIONS orders.region
METRICS orders.revenue
);
-- Snowflake: direct SQL with AGG view-defined aggregate function
-- (NOT currently supported in duckdb-semantic-views)
SELECT region, AGG(revenue)
FROM analytics
GROUP BY region;
Cardinality Inference¶
Both systems infer cardinality from constraints. In DuckDB Semantic Views, cardinality is inferred from PRIMARY KEY and UNIQUE declarations in the TABLES clause:
If the FK columns on the “from” side match a PK or UNIQUE constraint, the relationship is one-to-one.
Otherwise, the relationship is many-to-one (the default).
The extension uses inferred cardinality for fan trap detection.
Metric Grain¶
Changed in version 0.12.0.
Like Snowflake, each metric is computed at the grain of its own logical table. When a query’s metrics sit at different grains — a metric on a parent table alongside one on the base table, two metrics on different child tables, or a single derived metric fusing two grains — each is aggregated separately over its own table and the results are joined on the queried dimensions. A metric on a parent table is therefore not multiplied by the number of child rows, and a parent row with no children is not dropped.
Before v0.12.0 the generated SQL was always anchored FROM <base table>, so
these queries were rejected with a fan-trap error rather than silently inflated.
Single-grain queries are unchanged: they are still a single base-anchored
SELECT.
Two boundaries are worth knowing:
A dimension below a metric’s grain (
SUM(customers.balance)grouped by an order-grain dimension) is rejected in both systems. Snowflake’s rule is that the logical table for the dimension must be related to the logical table for the metric and must have “an equal or lower level of granularity than the logical table for the metric”; ourfan trap detectederror enforces the same condition. Per-grain aggregation does not make these answerable — the metric’s rows genuinely fan across the dimension’s values, so there is no single correct value per group.A window metric whose inner aggregate lives on a non-base table is computed at its own grain — the
__sv_aggCTE anchors there, so the inner aggregate is not inflated by the base-table join. Window metrics whose inner aggregates sit at different grains still error, as those grains would need joining before the window runs.Multi-grain queries involving active semi-additive metrics are not yet computed per-grain here and keep raising the fan-trap error. Snowflake computes them.
Multi-grain queries reaching a role-played table are computed when a co-queried metric’s
USINGnames the role: each grain CTE joins that relationship under its scoped alias and groups by the dimension bound to it, as the single-grain path already did. WithoutUSINGthe query keeps the fan-trap error, since a grain CTE would otherwise choose among the relationship instances by declaration order. The rescue covers a queried dimension’s own table — awhere_clausemember on a role-played table, a metric aggregated at one, or a table reachable only through one still error. A definition that merely declares role-playing does not lose per-grain emission: the test is what the query reaches, so unrelated grains in the same view are computed normally.
USING RELATIONSHIPS¶
Both systems support USING on metrics to select which relationship path a metric traverses. The syntax is identical:
METRICS (
f.departures USING (dep_airport) AS COUNT(*)
)
Facts Query Mode¶
Added in version 0.6.0.
Both systems allow facts to be queried directly as row-level columns. In Snowflake, facts appear in the SEMANTIC_VIEW() query function. In DuckDB Semantic Views, use the facts parameter:
-- DuckDB: query facts as row-level columns
SELECT * FROM semantic_view('analytics',
dimensions := ['region'],
facts := ['net_price']
);
Warning
In both systems, facts and metrics cannot be combined in the same query. Use facts := [...] OR metrics := [...], not both.
Semi-Additive and Window Metrics¶
Added in version 0.6.0.
Both systems support semi-additive metrics (NON ADDITIVE BY) and window function metrics (OVER with PARTITION BY EXCLUDING). The syntax is aligned:
-- Semi-additive: last balance per account, summed across customers
METRICS (
a.balance NON ADDITIVE BY (date_dim) AS SUM(a.amount)
)
-- Window: rolling average excluding region from partition
METRICS (
o.avg_qty AS AVG(total_qty) OVER (PARTITION BY EXCLUDING region ORDER BY month)
)
Like Snowflake, the default (ascending) direction selects the latest snapshot and DESC selects the earliest (see How to Use Semi-Additive Metrics).
The behavioral differences are:
NON ADDITIVE BYdimensions must be declared in the view’sDIMENSIONSclause. Snowflake validates against its own catalog.Window metrics and
NON ADDITIVE BYcannot be combined on the same metric (mutually exclusive).NULL keys in a non-additive dimension: the default NULLS placement follows the direction (
ASC→NULLS LAST,DESC→NULLS FIRST), matching DuckDB/Snowflake. UnderNULLS LASTa NULL key never wins (the latest/earliest real snapshot is selected); underNULLS FIRSTa NULL key wins. Add an explicitNULLS LASTto exclude NULL keys regardless of direction.Window metrics cannot be mixed with aggregate metrics in the same query.
Materializations¶
Added in version 0.7.0.
Snowflake’s CREATE SEMANTIC VIEW SQL DDL does not include a materializations or pre-aggregation concept. Pre-aggregation in Snowflake is handled through separate materialized views.
DuckDB Semantic Views introduces a MATERIALIZATIONS clause that declares mappings from pre-aggregated tables to the dimensions and metrics they cover. When a query exactly matches a materialization, the extension routes to the pre-aggregated table instead of expanding raw sources. See How to Use Materializations for details.
Transactional DDL¶
Added in version 0.8.0.
Both systems run CREATE / ALTER / DROP SEMANTIC VIEW inside the caller’s transaction, so BEGIN ... ROLLBACK discards uncommitted DDL in either engine.
The DuckDB-specific behaviour worth noting before you build on it:
DESCRIBE SEMANTIC VIEWand theSHOW SEMANTIC ...family read committed catalog state. ACREATEissued earlier in the same uncommitted transaction is not yet visible to introspection in that transaction; commit first, then describe.CREATE SEMANTIC VIEW IF NOT EXISTScannot fully absorb a race between two separate processes both running it against the same database at the same moment – one will succeed and the other will see a constraint error. Within a single process or transaction,IF NOT EXISTSis reliable.The non-
IF EXISTSDROPandALTERforms raisesemantic view '<name>' does not existwhen the view is absent at check time, instead of silently no-opping. The existence check and the write are atomic only inside an explicit transaction; under autocommit a drop committed by another writer in the window between them is not detected. Wrap the DDL inBEGIN ... COMMITwhen you need the check to be reliable under concurrency.
See Transactional DDL and Known Limitations for the full mechanism and worked examples.
Feature Parity Notes¶
Snowflake CREATE SEMANTIC VIEW features that are commonly asked about, and where each one stands. Rows marked Supported have since landed; the rest are unimplemented, out of scope, or not planned, with the reason given:
Snowflake Feature |
Status |
|---|---|
Direct SQL query interface |
Not planned; semantic_view() table function is the query interface |
Pre-aggregation |
Supported as the |
Named filters – |
Supported. |
Column-level security |
Out of scope; DuckDB handles access control |
|
Not planned; standard equi-joins cover most use cases |
|
Not planned; these are Snowflake-catalog or Cortex-specific and have no DuckDB equivalent |
A Note on Snowflake’s YAML Spec¶
Snowflake’s YAML-based semantic view definition (CREATE SEMANTIC VIEW FROM YAML) is a separate interface designed for Cortex Analyst, Snowflake’s AI SQL generation layer. The YAML spec includes concepts that do not exist in the SQL DDL:
time_dimensionswith granularity controls (the SQL DDL uses regular dimensions withdate_trunc())custom_instructionsfor AI prompt tuningaccess_modifierfor column-level securitysample_valuesfor AI context
DuckDB Semantic Views supports YAML definition import (FROM YAML) and export (READ_YAML_FROM_SEMANTIC_VIEW()), but these use the extension’s own YAML schema – not Snowflake’s Cortex Analyst YAML spec. The DuckDB YAML format is a serialization of the same model used by the SQL DDL (tables, relationships, facts, dimensions, metrics, materializations). It is designed for version control, migration, and sharing – not for AI prompt tuning. Comparisons against Snowflake YAML-spec-only features remain not applicable.
See How to Import and Export YAML Definitions for the DuckDB YAML workflow.