Your question is String Character Occurrences. Start with the requirements and the two tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
FIS PayDirect operations teams inspect message strings when validating payment integration requests. Write a PostgreSQL query that analyzes the text associated with request 101.
fis_scan_requests to fis_scan_policies and analyze only requests whose policy allows whitespace inspection.| Column | Type | Description |
|---|---|---|
| request_idPK | INTEGER | Unique message scan request identifier |
| policy_id | INTEGER | Policy controlling how the message is scanned |
| input_text | TEXT | Message string submitted for character analysis |
| Column | Type | Description |
|---|---|---|
| policy_idPK | INTEGER | Unique scan policy identifier |
| policy_name | VARCHAR(80) | Human-readable policy name |
| include_whitespace | BOOLEAN | Indicates whether spaces and other whitespace are included |