Skip to content

Commit 2ee74cc

Browse files
Merge pull request #2643 from pierre-sk/patch-1
Fix query example
2 parents 7b96610 + debcde2 commit 2ee74cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-explorer/kusto/query/cosmosdb-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The following example joins partner data from an Azure Cosmos DB with partner da
120120
```kusto
121121
evaluate cosmosdb_sql_request(
122122
'AccountEndpoint=https://cosmosdbacc.documents.azure.com/;Database=<MyDatabase>;Collection=<MyCollection>;AccountKey='h'<AccountKey>',
123-
"SELECT c.id, c.Partner, c. phoneNumber FROM c') : (Id:long, Partner:string, phoneNumber:string)
123+
"SELECT c.id, c.Partner, c. phoneNumber FROM c") : (Id:long, Partner:string, phoneNumber:string)
124124
| join kind=innerunique Partner on Partner
125125
| project id, Partner, phoneNumber, website, Contact
126126
| sort by Partner

0 commit comments

Comments
 (0)