v.1.1.54388New Feature
New startsWith and endsWith Functions for Strings
NewstartsWithandendsWithfunctions for strings (Vadim Plakhtinsky).
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
UsestartsWith(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.