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 |
|
Same rule: |
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.
What an Expression May Reference¶
Both systems scope a member expression to its own logical table. Snowflake’s validation rules state that expressions can refer to base table columns or other expressions on the same logical table, and that they “cannot refer to base table columns from other tables”. To reach another table you declare a relationship, define a fact on the source table, and refer to that fact from the connected table. The rule here is the same.
A named fact on another table – Snowflake’s supported cross-table form –
is at parity: the fact’s expression is inlined at its reference site and its
table is joined, so o.net_total AS SUM(o.amount - c.cust_discount) computes
over the joined relation. One safety rule is added on top of Snowflake’s, for a
hazard its single-grain model does not face here: if the fact’s table fans the
referencing member’s – a fact on a child table, reached across a one-to-many
edge – joining it would multiply the member’s rows, so the query is rejected
with a fan-trap error rather than answered with an inflated aggregate. See
Reference a Fact on Another Table.
A raw column of another table (o.margin AS o.amount - c.discount) is
rejected at CREATE in both systems, with an error naming the rule and
pointing at the fact-based alternative. A qualifier that names no declared table
at all is left to DuckDB, which is the right place for a struct path, a bound
parameter, or a typo to be resolved.
Changed in version 0.12.0: Before, the definition was accepted and the reference surfaced at query time as a DuckDB unknown-alias error – the same rule, enforced later.
Derived metrics are unaffected: a metric that references metrics on other tables
(m AS t1.metric_1 + t2.metric_2) is supported in both systems, and is
computed per grain – see Metric Grain below.
Reported Data Types¶
Snowflake populates the data_type column of SHOW SEMANTIC DIMENSIONS /
METRICS / FACTS (and the DATA_TYPE rows of DESCRIBE) with the
member’s actual data type.
Here the column reports the declared output type and nothing else, and no
surface declares one. There is no type inference: CREATE no longer probes the
underlying tables (v0.10.0 removed the define-time inference pass), and the read
side does not probe either. A YAML definition could once
declare an output_type, but that field was withdrawn because no DDL clause can
carry it – GET_DDL dropped it silently and a restored view lost the cast. The
column is therefore empty for every view created since v0.10.0, and populated only
for views stored before that release. Reporting the type an expression actually
produces would need a probe on the read path, at SHOW / DESCRIBE bind
time; that is a known limitation and is not implemented today.
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.
Four 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.An active semi-additive metric snapshots at its own grain, whether it is the query’s only grain or one of several: the
RANK()runs over the metric’s own table rather than a base-anchored join, so the winning snapshot row is not added once per base-table row. ANON ADDITIVE BYdimension declared on another logical table is joined in so its ordering still binds. This matches Snowflake: probed directly, it returns each metric at its own grain, with the snapshot selection happening inside the semi-additive metric’s own-grain aggregation rather than over the joined row set. Snowflake also accepts aNON ADDITIVE BYdimension declared on another logical table, provided the reference is qualified (NON ADDITIVE BY (s.report_date)); the bare form resolves only within the metric’s own table. Both forms are accepted here too.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. The one pairing that still declines is a role-played dimension queried together with an active semi-additive metric: a snapshot group cannot carry a role, so the two grains would bind different instances of the same dimension and the outer join would compare them.
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.
Schema Scoping and Name Resolution¶
Both systems scope a semantic view to a schema, so analytics.sales and staging.sales are two different views and a <schema>. qualifier on CREATE / DROP / ALTER decides which one a statement means.
Where they differ is how an unqualified reference is resolved. Snowflake uses the session’s current database and schema; DuckDB Semantic Views uses DuckDB’s own rule, the session search_path – the first schema on it holding a view of that name wins, so SET search_path = 'staging' makes a bare sales mean staging.sales. A view that is the only one of its name resolves whether or not its schema is on the path.
A name that exists only in schemas off the path is a miss. The error names the schemas it does live in and the path that was searched, rather than reporting a bare “does not exist” for a view SHOW SEMANTIC VIEWS plainly lists.
Two DuckDB-specific consequences:
Identifiers are case-insensitive on both sides of the dot, quoted or not, following DuckDB rather than Snowflake –
analytics.sales,ANALYTICS.SALESand"Analytics"."Sales"all name the same view. Snowflake would treat the quoted spellings as case-sensitive. See CREATE SEMANTIC VIEW for the full identifier rule.One catalog per database. A
<database>.prefix that names a database other than the session’s is rejected: the extension manages a single catalog, in the database it was loaded into.
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.