Parse person name into JSON with fields: prefix, first, middle, last, suffix, nickname, formatted
Per-row — runs once for each row.
PARSE_NAME({{ name }})| name | type | description |
|---|---|---|
| name | VARCHAR | — |
First name extracted
SELECT
parse_name ('Dr. John Michael Smith Jr.')Last-first format parsed
SELECT
parse_name ('Smith, Jane')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 person name into JSON with fields: prefix, first, middle, last, suffix, nickname, formatted
Per-row — runs once for each row.
PARSE_NAME({{ name }})| name | type | description |
|---|---|---|
| name | VARCHAR | — |
First name extracted
SELECT
parse_name ('Dr. John Michael Smith Jr.')Last-first format parsed
SELECT
parse_name ('Smith, Jane')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