SQL

MySQL LENGTH() Function

The LENGTH() function returns the length of a string. MySQL LENGTH Function Syntax MySQL LENGTH Function Example This query returns […]

SQL

MySQL LEFT() Function

The LEFT() function in MySQL returns a specific number of characters from the start (left side) of a string. MySQL

SQL

MySQL LCASE() Function

The LCASE() function in MySQL is used to convert any text value to lower-case letters. This is helpful when you

SQL

MySQL INSTR() Function

The INSTR() function returns the position of the first occurrence of a substring within another string. If the substring is

SQL

MySQL INSERT() Function

The INSERT() function adds a substring into another string at a specific position, replacing a set number of characters. MySQL

SQL

MySQL FORMAT() Function

The FORMAT() function formats a number with commas and rounds to a given number of decimal places, returning the result

SQL

MySQL FIELD() Function

The FIELD() function returns the index position of a value in a list of values. The search is case-insensitive. If

SQL

MySQL CONCAT_WS() Function

The CONCAT_WS() function combines two or more expressions into one string, with a separator between each expression. WS stands for

SQL

MySQL CONCAT() Function

The CONCAT() function combines two or more expressions (strings) into one string. MySQL CONCAT Function Syntax MySQL CONCAT Function Example