Skip to content

Commit 5682c17

Browse files
authored
Add clarifications required by @mamccrea
1 parent 92b3cf4 commit 5682c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/stream-analytics/stream-analytics-parsing-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ The result is:
257257
|12345|Manufacturer|ABC|
258258
|12345|Version|1.2.45|
259259

260-
Using [WITH](https://docs.microsoft.com/stream-analytics-query/with-azure-stream-analytics), if necessary it's then possible to [join](https://docs.microsoft.com/stream-analytics-query/join-azure-stream-analytics) those fields in the main query (since this is not a join on reference data, it needs a [time boundary](https://docs.microsoft.com/stream-analytics-query/join-azure-stream-analytics#BKMK_DateDiff) that prevents duplication).
260+
If the extracted fields need to appear in columns, it is possible to pivot the dataset using the [WITH](https://docs.microsoft.com/stream-analytics-query/with-azure-stream-analytics) syntax in addition to the [JOIN](https://docs.microsoft.com/stream-analytics-query/join-azure-stream-analytics) operation. That join will require a [time boundary](https://docs.microsoft.com/stream-analytics-query/join-azure-stream-analytics#BKMK_DateDiff) condition that prevents duplication:
261261

262262
```SQL
263263
WITH DynamicCTE AS (

0 commit comments

Comments
 (0)