Category: MySQL Functions
SUBSTRING_INDEX(), This function returns everything before or after a certain character (or characters) in a string. This function let you to state the delimiter to use, and you can also...
SUBSTR(), This function returns a substring starting from the specified position. Both MID() and SUBSTR() are synonyms of SUBSTRING(). The forms without a length argument return a substring from a...
SUBSTRING(), This function returns a substring starting from the specified position. Both MID() and SUBSTR() are synonyms of SUBSTRING(). The forms without a length argument return a substring from a...
SOUNDS LIKE() Functions returns value 0 (False)or 1(True) depending upon the sounds of the input strings matches or not. This operator works best on strings in the English language (using...
SOUNDEX() Functions returns a Soundex string from a given input string. Returns NULL if the argument is NULL. If two words sound the same, they should have the same Soundex...
SPACE() Functions returns a string consisting of the blank space repeated count times. If count is less than(<) 1, it returns an empty string. Returns NULL if argument is NULL....
QUOTE() function returns the string surrounded by single quotations and escapes the backslash in it. The MySQL QUOTE() function quotes a string to produce a result that can be used...
REPEAT() Functions returns a string consisting of the input string repeated count times. If count is less than(<) 1, it returns an empty string. Returns NULL if any argument is...
Data Science is in too much Hype these days. Every organization is now a day looking for data scientists. The Data science role includes the collection, retrieval, analyzing, and representation...
REVERSE() functions return the string with the order of the characters reversed. Returns NULL if the argument is NULL. Note: This function is multibyte safe. MySQL REVERSE() Functions: Syntax REVERSE...
REPLACE() function change all instances of a fromString to newString within a string. It treats lower and upper case letters differently. Or it performs a case-sensitive match. Note : This...
Data Science is in too much Hype these days. Every organization is now a day looking for data scientists. The Data science role includes the collection, retrieval, analyzing, and representation...
POSITION() Functions return the position of the first instance of srchstring in string . Returns 0 if srchstring is not in string. Returns NULL if any argument is NULL. Note...
This function helps in getting the numeric value of the leftmost character of a input string. [table caption=”” width=”100%” colwidth=”50%|50%” colalign=”left|left”] If the leftmost character, returned value is a multibyte...
This function helps in getting the length of a string in bytes. OCTET_LENGTH() functions returns the length of a string in bytes. A multibyte character counts as a multiple bytes....
This function helps in changing from decimal to octal number. It returns a string representation of the octal value of its argument. OCT() : Syntax OCT ( Number ); OCT()...
Introduction MySQL is an open-source relational database server tool for Linux/Windows operating systems. It is widely used in modern web-based technology. It is used with many open sources based on...
MID(), This function returns a substring starting from the specified position. Both MID() and SUBSTR() are synonyms of SUBSTRING(). The forms without a length argument return a substring from a...
MAKE_SET() Functions returns a comma-separated list of values that match with bits of a base 10 number converted to its binary equivalent. When we call the function, we specify any...
This function helps in adding new characters in the start of string. We can add the one or more characters in the right part of a string. RPAD() functions returns...