Tell me a time you had to deal with unstructured data?
For this SQL exercise, use the supplied transaction payloads and source labels. Write a query that extracts customer references, normalizes monetary values, parses supported date formats, and retains only usable transactions from 2025 onward.
record_id, source_label, customer_reference, transaction_date, and amount.record_id ascending.| Column | Type | Description |
|---|---|---|
| record_idPK | INT | Unique raw transaction identifier |
| source_system | VARCHAR(40) | System that supplied the payload |
| raw_payload | TEXT | Transaction attributes stored as JSON text |
| Column | Type | Description |
|---|---|---|
| source_systemPK | VARCHAR(40) | Source system code |
| source_label | VARCHAR(80) | Readable source system label |