Skip to content

Commit 317220c

Browse files
authored
Merge pull request #97216 from liambohl/patch-1
Update sql-query-from.md
2 parents 379518d + d96b2b8 commit 317220c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/cosmos-db/sql/sql-query-from.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ FROM <from_specification>
4949

5050
Specifies a data source, with or without an alias. If alias is not specified, it will be inferred from the `<container_expression>` using following rules:
5151

52-
- If the expression is a container_name, then container_name will be used as an alias.
52+
- If the expression is a container_name, then container_name will be used as an alias.
5353

54-
- If the expression is `<container_expression>`, then property_name, then property_name will be used as an alias. If the expression is a container_name, then container_name will be used as an alias.
54+
- If the expression is `<container_expression>`, then property_name, then property_name will be used as an alias. If the expression is a container_name, then container_name will be used as an alias.
5555

5656
- AS `input_alias`
5757

@@ -87,7 +87,7 @@ FROM <from_specification>
8787

8888
## Remarks
8989

90-
All aliases provided or inferred in the `<from_source>(`s) must be unique. The Syntax `<container_expression>.`property_name is the same as `<container_expression>' ['"property_name"']'`. However, the latter syntax can be used if a property name contains a non-identifier character.
90+
All aliases provided or inferred in the `<from_source>`(s) must be unique. The Syntax `<container_expression> '.' property_name` is the same as `<container_expression> '[' "property_name" ']'`. However, the latter syntax can be used if a property name contains a non-identifier character.
9191

9292
### Handling missing properties, missing array elements, and undefined values
9393

0 commit comments

Comments
 (0)