About 2,720,000 results
Open links in new tab
  1. MySQL MOD () Function - W3Schools

    Definition and Usage The MOD () function returns the remainder of a number divided by another number. Syntax MOD (x, y)

  2. SQL MOD: Returns Modulus of a Number Divided by Another

    In this tutorial, you will learn how to use the SQL MOD function that returns the remainder of one number divided by another.

  3. % (Modulus) (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · You can use the modulo arithmetic operator in the select list of the SELECT statement with any combination of column names, numeric constants, or any valid expression …

  4. MOD () Function in MySQL - GeeksforGeeks

    Jul 23, 2025 · The MOD () function in MySQL is used to find the remainder of one number divided by another. The MOD () function returns the remainder of dividend divided by divisor. if the …

  5. SQL MOD () function - w3resource

    Apr 20, 2024 · MOD () is a mathematical function that calculates the remainder of the division of two numbers. In this case, MOD (25,7) will return the remainder when 25 is divided by 7, …

  6. MOD () in SQL: Examples, Use Cases & Error Handling

    Discover how to use the MOD () function in SQL with examples, common use cases, and error handling tips to optimize your queries.

  7. How MOD works in SQL? Best MOD examples - KajoData

    When working with SQL, one of the lesser-known yet incredibly useful functions is MOD. This function helps us determine remainders after division, which can be handy in a variety of …

  8. MOD Function in SQL: Syntax, Examples, and Best Practices

    Sep 25, 2025 · Learn the SQL MOD () function with syntax, parameters, and examples. Explore MOD () function in MySQL for calculations and real-world use cases.

  9. MySQL MOD () Function: Usage & Examples - DataCamp

    Learn how to use the MySQL `MOD ()` function for modulo arithmetic, including examples and best practices for determining divisibility and handling cyclic operations efficiently.

  10. MySQL MOD () Function

    Use the MySQL MOD() function to get the remainder when dividing one number by another.