About 3,060 results
Open links in new tab
  1. % (Modulus) (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · The % (modulus) operator returns the remainder of one number divided by another.

  2. MySQL MOD () Function - W3Schools

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

  3. SQL Modulus Operator - Tutorial Kart

    This operator is useful in scenarios such as checking divisibility, filtering even or odd numbers, and performing cyclic calculations. In this tutorial, we will explore the SQL modulus operator, …

  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 Server Modulo (%) Operator - AlphaCodingSkills - Java

    The SQL Server (Transact-SQL) % (modulo) operator is used to calculate remainder of a division operation. It operates on numerical values. The example ...

  6. SQL MOD () function - w3resource

    Apr 20, 2024 · The modulo operation (MOD ()) calculates the remainder when the opening amount is divided by the receive amount for each row. The query is executed against the …

  7. Modulo Operator (%) | Server | MariaDB Documentation

    Description Modulo operator. Returns the remainder of N divided by M. See also MOD.

  8. 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.

  9. MySQL - Modulus Operator (%, MOD) - Online Tutorials Library

    The MySQL modulus operator (% or MOD) returns the remainder obtained from the division operation (right operator divided by the left operator) performed on the data stored in MySQL.

  10. 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.