v.1.1.54388New Feature

New startsWith and endsWith Functions for Strings

New startsWith and endsWith functions for strings (Vadim Plakhtinsky).
Added new string functions startsWith and endsWith to check prefixes and suffixes of strings.

Why it matters

These functions provide an easy and efficient way to determine if a string begins or ends with a specified substring, simplifying string filtering and matching operations in queries.

How to use it

Use startsWith(string, prefix) to check if a string starts with the given prefix, and endsWith(string, suffix) to check if it ends with the given suffix in your SQL queries.