Skip to content

Commit 4f353ec

Browse files
Zane Shelbyzane
Zane Shelby
authored andcommitted
docs: Include FROM clauses in WITH examples
1 parent 806bb8c commit 4f353ec

File tree

2 files changed

+2
-0
lines changed
  • docs/modules/ROOT/partials

2 files changed

+2
-0
lines changed

docs/modules/ROOT/partials/permissive/table-expressions/with.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ The `+WITH+` keyword allows you to bind names to values for the lifetime of a qu
88
----
99
WITH (satellites_model GIVEN Users = "Military") AS military_model:
1010
SELECT PROBABILITY OF Apogee_km UNDER military_model
11+
FROM satellites
1112
----
1213
====

docs/modules/ROOT/partials/strict/table-expressions/with.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ The `+WITH+` keyword allows you to bind names to values for the lifetime of a qu
88
----
99
WITH (satellites_model CONDITIONED BY VAR Users = "Military") AS military_model:
1010
SELECT PROBABILITY OF VAR Apogee_km > Apogee_km UNDER military_model
11+
FROM satellites
1112
----
1213
====

0 commit comments

Comments
 (0)