Category: MySQL Functions
MySQL LOWER() Functions: Syntax LOWER ( string ); MySQL LOWER() Functions: Description LOWER() functions converts all the characters in a string to lowercase characters according to the current character set...
MySQL UCASE() Functions: Syntax UCASE ( string ); MySQL UCASE() Functions: Description UCASE() functions convert all the characters in a string to uppercase characters according to the current character set...
MySQL UPPER() Functions: Syntax UPPER ( string ) MySQL UPPER() Functions: Description UPPER() functions convert all the characters in a string to uppercase characters according to the current character set...
MySQL ELT() Functions: Syntax ELT ( N, string1, string2, ….. ) MySQL ELT() Functions: Description ELT() functions returns the Nth element of the list of strings: string1 if N =...
MySQL CONCAT_WS() Functions: Syntax CONCAT_WS ( separator, string1, string2, .. stringN) MySQL CONCAT_WS() Functions: Description CONCAT_WS() functions returns the concatenated string and adds a separator between each of the concatenated...
MySQL CONCAT() Functions: Syntax CONCAT ( string1, string2, .. ) MySQL CONCAT() Functions: Description CONCAT() functions returns the concatenated string. You may have one or more arguments. If all arguments...
MySQL CHARACTER_LENGTH() Functions: Syntax CHARACTER_LENGTH ( string ) MySQL CHARACTER_LENGTH() Functions: Description This function is equal to the CHAR_LENGTH() function. Related articles : CHAR_LENGTH() , BIT_LENGTH(), LENGTH() See all MySQL...
MySQL CHAR_LENGTH() Functions: Syntax CHAR_LENGTH ( string ) MySQL CHAR_LENGTH() Functions: Description CHAR_LENGTH() functions returns the length of a string (in characters). A multibyte character counts as a single character....
MySQL CHAR() Functions: Syntax CHAR ( N,… [USING charset_name]) MySQL CHAR() Functions: Description CHAR() functions interpret each argument N as an integer and return a string consisting of the characters...
MySQL 8 has many built-in functions. This reference contains string functions in MySQL. [table caption=”MySQL 8 String Functions list with examples” width=”100%” colwidth=”10%|90%” colalign=”left|left”] Command, Description ASCII(), This will return...
MySQL BIT_LENGTH() Functions: Syntax BIT_LENGTH ( string ); MySQL BIT_LENGTH() Functions: Description BIT_LENGTH() returns the length of the string passed as input in bits. MySQL BIT_LENGTH() Functions: Parameter [table caption=””...
MySQL ASCII() Functions: Syntax ASCII ( string ); MySQL ASCII() Functions: Description ASCII() function return the numeric value of left-most character. ASCII() works for 8-bit characters. MySQL ASCII() Functions: Parameter...
MySQL BIN() Functions: Syntax BIN ( number ); MySQL BIN() Functions: Description BIN() function return a string containing binary representation of a number. Returns a string representation of the binary...
MySQL has many aggregate functions that include COUNT, MAX, MIN, SUM, AVG, etc. In this tutorial, we will cover the description and how to use these aggregate functions in our...
MYSQL is the structured query language. It is the language to query the database. Here are some of the important questions being asked from beginners. Q1. What is MySQL? A1....