1. CONCAT():

    Example:

    sqlCopy code
    SELECT CONCAT('Hello', ' ', 'World') AS concatenated_string;
    
    

    Output: Hello World

  2. SUBSTRING():

    Example:

    sqlCopy code
    SELECT SUBSTRING('MySQL Tutorial', 1, 5) AS substring_result;
    
    

    Output: MySQL

  3. UPPER() and LOWER():

    Example:

    sqlCopy code
    SELECT UPPER('hello') AS upper_case, LOWER('WORLD') AS lower_case;
    
    

    Output: HELLO, world

  4. LENGTH():

    Example:

    sqlCopy code
    SELECT LENGTH('MySQL') AS string_length;
    
    

    Output: 5

  5. TRIM():

    Example:

    sqlCopy code
    SELECT TRIM('   Hello   ') AS trimmed_string;
    
    

    Output: Hello

  6. REPLACE():

    Example:

    sqlCopy code
    SELECT REPLACE('Hello, World!', 'World', 'John') AS replaced_string;
    
    

    Output: Hello, John!

  7. LEFT() and RIGHT():

    Example:

    sqlCopy code
    SELECT LEFT('MySQL Tutorial', 5) AS left_string, RIGHT('MySQL Tutorial', 7) AS right_string;
    
    

    Output: MySQL, Tutorial

  8. LOCATE():

    Example:

    sqlCopy code
    SELECT LOCATE('world', 'Hello, world!') AS position;
    
    

    Output: 7

  9. CONCAT_WS():

    Example:

    sqlCopy code
    SELECT CONCAT_WS(', ', 'John', 'Doe') AS full_name;
    
    

    Output: John, Doe

  10. CHAR_LENGTH():

    Example:

    sqlCopy code
    SELECT CHAR_LENGTH('Café') AS string_length;
    
    

    Output: 4

These are some of the commonly used string functions in MySQL, and they can be helpful for various string manipulation tasks in your SQL queries.