intermediate string-processing MySQL MariaDB SQL Server PostgreSQL SQLite
Extract the Nth Field From a Delimited String
Pull out a specific token from a dot- or delimiter-separated string using `SPLIT_PART` (PostgreSQL), `SUBSTRING_INDEX` (MySQL/MariaDB), `PARSENAME` (SQL Server), or nested `SUBSTR`/`INSTR` (SQLite).