Skip to content

Commit eb037ce

Browse files
Update applied-overview-of-MATCH_RECOGNIZE-clause.md
1 parent 2c98c4c commit eb037ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

applied-overview-of-MATCH_RECOGNIZE-clause.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Applied overview of MATCH_RECOGNIZE clause
22

3-
SQL `MATCH_RECOGNIZE` clause can perform Pattern Matching over a set of rows. `MATCH_RECOGNIZE` does this by assigning labels to events, finding the events within an ordered partition, and pulling out any sequences that match the given pattern
3+
Pattern recognition is a common use case in data processing. Detecting trend reversals, identifying anomalies, and finding sequences in data are all examples of pattern recognition problems. In SQL, Row Pattern Recognition (RPR) became part of the SQL standard in 2016 and `MATCH_RECOGNIZE` was introduced. SQL `MATCH_RECOGNIZE` clause can perform Pattern Matching over a set of rows. `MATCH_RECOGNIZE` does this by assigning labels to events, finding the events within an ordered partition, and pulling out any sequences that match the given pattern
44

55
To demonstrate the power of `MATCH_RECOGNIZE` we will use the Unemployment by State data set from BLS.
66

0 commit comments

Comments
 (0)