Skip to content

MySQL Tutorial

Learn MySQL

Menu
  • Home
  • Data types
  • Functions
    • Aggregate Functions
    • Cast Functions
    • Comparison Functions
    • DATE Functions
    • Flow Control Functions
    • Math functions
    • String Functions
    • Window Functions
    • REGEXP Functions
    • JSON Functions
    • XML Functions
    • Information Functions
    • Encryption Functions

Category: MySQL

Learn MySQL Tutorial

MySQL POWER

January 1, 2024
| No Comments
| MySQL

The MySQL POWER function is a mathematical function that raises a specified number to the power of another number. It is often used to perform exponential calculations. The syntax of the POWER function is as follows: Syntax POWER(base, exponent) Here, “base” is the number that will be raised to the power of “exponent.” The function […]

Read More »

MySQL ABS

January 1, 2024
| No Comments
| MySQL

The ABS function in MySQL is a mathematical function that stands for “absolute value.” Its primary purpose is to return the absolute value of a numeric expression. The absolute value of a number is its distance from zero on the number line, regardless of its direction. In other words, it gives the positive value of […]

Read More »

MySQL FLOOR

January 1, 2024
| No Comments
| MySQL

The MySQL FLOOR function is a mathematical function used to round a numeric value down to the nearest integer that is less than or equal to the original value. It is particularly useful when you want to discard the decimal part of a number and obtain the largest integer that is less than or equal […]

Read More »

MySQL CEIL

January 1, 2024
| No Comments
| MySQL

In MySQL, the CEIL function is used to return the smallest integer value that is greater than or equal to a specified numeric expression or column. It rounds up the given value to the nearest integer greater than or equal to the original value. The CEIL function is particularly useful when you need to ensure […]

Read More »

MySQL ROUND

December 29, 2023
| No Comments
| MySQL

The MySQL ROUND function is used to round a numeric value to a specified number of decimal places. This function is particularly useful when dealing with numerical data and you need to control the precision of your results. Syntax Here is the basic syntax of the ROUND function: ROUND(number, [decimal_places]) number: The numeric value that […]

Read More »

MySQL LOWER

December 29, 2023
| No Comments
| MySQL

The MySQL LOWER function is a built-in string function that is used to convert all characters in a given string to lowercase. This function is particularly useful in scenarios where you want to perform case-insensitive comparisons or searches on textual data. Syntax Here’s the basic syntax of the LOWER function: LOWER(string) string: This is the […]

Read More »

Posts pagination

Previous 1 … 26 27 28 … 39 Next

MySQL tutorial

  • MySQL Database
  • MySQL Create table
  • MySQL Insert
  • MySQL Update
  • MySQL Delete
  • MySQL Select
  • MySQL From
  • MySQL Where
  • MySQL Order By
  • MySQL Select distinct
  • MySQL AND
  • MySQL OR
  • MySQL IN
  • MySQL NOT IN
  • MySQL BETWEEN
  • MySQL LIKE
  • MySQL LIMIT
  • MySQL EXISTS
  • MySQL GROUP BY
  • MySQL HAVING
  • MySQL IS NULL
  • MySQL Joins
  • MySQL INNER JOIN
  • MySQL LEFT JOIN
  • MySQL RIGHT JOIN
  • MySQL CROSS JOIN
  • MySQL SELF JOIN
  • MySQL ROLLUP
  • MySQL Subquery
  • MySQL UNION
  • MySQL UNION ALL
  • MySQL EXCEPT
  • MySQL CASE
  • MySQL IF-THEN-ELSE

Recent Posts

  • MySQL SUBDATE function
  • MySQL STR_TO_DATE function
  • MySQL convert string to date
  • MySQL datetime format
  • MySQL create temporary table
  • MySQL current datetime
  • MySQL TRUNCATE
  • MySQL SHOW EVENTS
  • MySQL ALTER EVENT
  • MySQL DROP EVENT

© MySQL Tutorial 2025.