Data Engineering Streaming
- Data Engineering Streaming H2L
- All Products
SQL Syntax
| perl Syntax
| Description
|
---|---|---|
%
| . *
| Matches any string.
|
A%
| A.*
| Matches the letter “A” followed by any string, as in Area.
|
_
| . (a period)
| Matches any one character.
|
A_
| A.
| Matches “A” followed by any one character, such as AZ.
|