Check if two words sound similar (phonetically)
Per-row — runs once for each row.
{{ text }} SOUNDS_LIKE {{ reference }}| name | type | description |
|---|---|---|
| text | VARCHAR | First text |
| reference | VARCHAR | Reference text |
Phonetically similar names match
SELECT
sounds_like ('Smith', 'Smyth')Catherine/Kathryn spelling variants match
SELECT
sounds_like ('Catherine', 'Kathryn')Jon/John variants match
SELECT
sounds_like ('Jon', 'John')Mc/Mac prefix variants match
SELECT
sounds_like ('McDonald', 'MacDonald')Distinct names do not match
SELECT
sounds_like ('Smith', 'Jones')Similar-looking but distinct surnames do not match
SELECT
sounds_like ('Williams', 'Wilson')How strongly text supports a specific message or stance (0.0-1.0)
Check if an image semantically matches a text query (cross-modal)
Cross-modal cosine similarity between an image and a text query
Fuzzy cross-match two string arrays via bge-m3 embeddings
Checks whether two values match under a relationship
Returns TRUE if text semantically matches the criterion (cross-encoder)
Check if two words sound similar (phonetically)
Per-row — runs once for each row.
{{ text }} SOUNDS_LIKE {{ reference }}| name | type | description |
|---|---|---|
| text | VARCHAR | First text |
| reference | VARCHAR | Reference text |
Phonetically similar names match
SELECT
sounds_like ('Smith', 'Smyth')Catherine/Kathryn spelling variants match
SELECT
sounds_like ('Catherine', 'Kathryn')Jon/John variants match
SELECT
sounds_like ('Jon', 'John')Mc/Mac prefix variants match
SELECT
sounds_like ('McDonald', 'MacDonald')Distinct names do not match
SELECT
sounds_like ('Smith', 'Jones')Similar-looking but distinct surnames do not match
SELECT
sounds_like ('Williams', 'Wilson')How strongly text supports a specific message or stance (0.0-1.0)
Check if an image semantically matches a text query (cross-modal)
Cross-modal cosine similarity between an image and a text query
Fuzzy cross-match two string arrays via bge-m3 embeddings
Checks whether two values match under a relationship
Returns TRUE if text semantically matches the criterion (cross-encoder)