Collections:
STRCMP() - Comparing Strings
How to compare two strings using the STRCMP() function?
✍: FYIcenter.com
STRCMP(str1, str2) is a MySQL built-in function that
returns -1, 0, or 1 to indicate the sorting order two given strings.
For example:
SELECT STRCMP('String', '$tring');
-- +----------------------------+
-- | STRCMP('String', '$tring') |
-- +----------------------------+
-- | 1 |
-- +----------------------------+
Reference information of the STRCMP() function:
STRCMP(str1, str2): int Returns 0 if the strings are the same, -1 if the first string is smaller than the second according to the sorting order, or 1 if the first is larger than the second. Arguments, return value and availability: str1: Required. The first string to be compared. str2: Required. The second string to be compared. int: Return value. -1, 0, or 1 indicating the sorting order. Available since MySQL 4.0.
⇒ SUBSTR() - Synonym for SUBSTRING()
⇐ SPACE() - Repeating Space Character
2023-11-13, 1089🔥, 0💬
Popular Posts:
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...