📄️ CONCATReturns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent nonbinary string form.
📄️ CONCAT_WSCONCAT_WS() stands for Concatenate With Separator and is a special form of CONCAT(). The first argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The separator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL.
📄️ FIELDReturns the index (position) of str in the str1, str2, str3, ... list. Returns 0 if str is not found.
📄️ FIND_IN_SETReturns a value in the range of 1 to N if the string str is in the string list strlist consisting of N substrings.
📄️ FROM_BASE64Takes a string encoded with the base-64 encoded rules nd returns the decoded result as a binary string.
📄️ INSERTReturns the string str, with the substring beginning at position pos and len characters long replaced by the string newstr. Returns the original string if pos is not within the length of the string. Replaces the rest of the string from position pos if len is not within the length of the rest of the string. Returns NULL if any argument is NULL.
📄️ LOCATEThe first syntax returns the position of the first occurrence of substring substr in string str.
📄️ ORDIf the leftmost character is not a multibyte character, ORD() returns the same value as the ASCII() function.
📄️ REGEXP_LIKEREGEXP_LIKE function is used to check that whether the string matches regular expression.
📄️ REPLACEReturns the string str with all occurrences of the string fromstr replaced by the string tostr.
📄️ SOUNDEXReturns a soundex string from str. Two strings that sound almost the same should have identical soundex strings. A standard soundex string is four characters long, but the SOUNDEX() function returns an arbitrarily long string. You can use SUBSTRING() on the result to get a standard soundex string. All nonalphabetic characters in str are ignored. All international alphabetic characters outside the A-Z range are treated as vowels.
📄️ STRCMPReturns 0 if the strings are the same, -1 if the first argument is smaller than the second, and 1 otherwise.
📄️ SUBSTRINGSUBSTRING function is used to extract a string containing a specific number of characters from a particular position of a given string.
📄️ SUBSTRING_INDEXReturns the substring from string str before count occurrences of the delimiter delim.
📄️ TO_BASE64Converts the string argument to base-64 encoded form and returns the result as a character string.