Mathematical functions in MySQL allow you to perform various mathematical calculations and operations on numeric values. Here is a list of common mathematical functions, along with real-time examples and detailed explanations for each:

  1. ABS():

    Example:

    sqlCopy code
    SELECT ABS(-10) AS absolute_value;
    
    

    Output: The absolute value of -10 is 10.

  2. ROUND():

    Example:

    sqlCopy code
    SELECT ROUND(3.14159265, 2) AS rounded_value;
    
    

    Output: Rounding 3.14159265 to 2 decimal places gives 3.14.

  3. CEIL() and FLOOR():

    Example:

    sqlCopy code
    SELECT CEIL(4.3) AS ceiling_value, FLOOR(4.9) AS floor_value;
    
    

    Output: Ceiling of 4.3 is 5, and floor of 4.9 is 4.

  4. SQRT():

    Example:

    sqlCopy code
    SELECT SQRT(25) AS square_root;
    
    

    Output: The square root of 25 is 5.

  5. POWER():

    Example:

    sqlCopy code
    SELECT POWER(2, 3) AS result;
    
    

    Output: 2 raised to the power of 3 is 8.

  6. EXP():

    Example:

    sqlCopy code
    SELECT EXP(2) AS exponent_result;
    
    

    Output: The exponential value of 2 is approximately 7.389.

  7. LOG():

    Example:

    sqlCopy code
    SELECT LOG(10) AS natural_log;
    
    

    Output: The natural logarithm of 10 is approximately 2.303.

  8. PI():

    Example:

    sqlCopy code
    SELECT PI() AS pi_value;
    
    

    Output: The value of π is approximately 3.142.

  9. RAND():

    Example:

    sqlCopy code
    SELECT RAND() AS random_number;
    
    

    Output: A random number between 0 and 1.

These mathematical functions in MySQL are essential for performing a wide range of calculations and transformations on numeric data within SQL queries. They are useful in various mathematical and scientific applications.