Skip to content

STRCMP

SELECT STRCMP("Hello", "World");
-1

In this example, the STRCMP() function compares two strings “Hello” and “World”. The result is -1 because “Hello” is less than “World” based on the ASCII value.