Tag archive
Commands grouped around the same concept, pattern, or recurring problem.
Format several known values into one compact `key=value` string for transport or handoff.
Convert string values to all uppercase or all lowercase using `UPPER` and `LOWER`.
Turn one plain-text payload into a base64 string for transport or lookup.
Return only part of a text value by position and length.
Compare normalized text values with LOWER or UPPER so matching does not depend on stored capitalization.
Return the number of characters in a string using `LENGTH` or `LEN`.
Combine multiple text values into one string in the query result.
Combine multiple text values into one hyphen-separated key-like string.
Use `REPEAT` to duplicate a string a given number of times, and `REVERSE` to flip its character order.
Substitute all occurrences of a substring with a new value using `REPLACE`.