Changelog

New SQL functions

Mar 27, 2025

We’ve added support for two new SQL functions in this week’s release of our managed cloud.

regexp_matches

First up: regexp_matches (docs) to return multiple matching substrings from a regular expression

sql
> SELECT regexp_matches('new Materialize SQL functions are here!', '(new|Materialize|SQL|functions)', 'g');

Output:

regexp_matches
---------------
{SQL}
{new}
{functions}
{Materialize}

reverse

Next up: reverse (docs) to reverse a string.

sql
> SELECT reverse('materialize');

Output:

reverse
--------
ezilairetam

Get Started with Materialize