-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 16 additions & 1 deletion
17
docs/modules/ROOT/partials/permissive/model-expressions/given.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
=== `+GIVEN+` | ||
|
||
.Compute the probability of the satellite's period from the model, given the class of orbit. | ||
[example] | ||
==== | ||
[source,gensql] | ||
---- | ||
SELECT | ||
PROBABILITY OF Period_minutes | ||
UNDER satellites_model GIVEN Class_of_Orbit | ||
UNDER satellites_model | ||
GIVEN Class_of_Orbit | ||
FROM satellites | ||
---- | ||
==== | ||
|
||
.Compute the probability of the satellite's period from the model, given everything but the contractor and operator's country. | ||
[example] | ||
==== | ||
[source,gensql] | ||
---- | ||
SELECT | ||
PROBABILITY OF Period_minutes | ||
UNDER satellites_model | ||
GIVEN * EXCEPT Contractor, Country_of_Operator | ||
FROM satellites | ||
---- | ||
==== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters