Parse, validate, or transform patterned strings using plain-English instructions
Per-row — runs once for each row.
{{ value }} PARSE {{ task }}PARSE_VALUE({{ value }}, {{ task }})| name | type | description |
|---|---|---|
| value | VARCHAR | The string value to parse or transform |
| task | VARCHAR | What to extract, validate, or how to transform |
Extracts a numeric value from free-form currency text
SELECT
parse_value (
'approximately $500 million',
'extract the numeric amount'
)Crawl a website and extract structured data from each page (via Firecrawl)
Extract specific information from unstructured text (zero-shot NER)
LLM-backed extraction (escape hatch for EXTRACTS)
Extract structured fields from text per a user-supplied schema
Merge multiple timelines into unified chronological sequence
Extract information from text using natural-language instructions
Parse, validate, or transform patterned strings using plain-English instructions
Per-row — runs once for each row.
{{ value }} PARSE {{ task }}PARSE_VALUE({{ value }}, {{ task }})| name | type | description |
|---|---|---|
| value | VARCHAR | The string value to parse or transform |
| task | VARCHAR | What to extract, validate, or how to transform |
Extracts a numeric value from free-form currency text
SELECT
parse_value (
'approximately $500 million',
'extract the numeric amount'
)Crawl a website and extract structured data from each page (via Firecrawl)
Extract specific information from unstructured text (zero-shot NER)
LLM-backed extraction (escape hatch for EXTRACTS)
Extract structured fields from text per a user-supplied schema
Merge multiple timelines into unified chronological sequence
Extract information from text using natural-language instructions