About 19,200 results
Open links in new tab
  1. ABS (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · The ABS function can produce an overflow error when the absolute value of a number exceeds the largest number that the specified data type can represent. For example, the int data …

  2. SQL Server ABS () Function - W3Schools

    Definition and Usage The ABS () function returns the absolute value of a number. Syntax ABS (number)

  3. SQL Server ABS() Function

    Apr 4, 2024 · In this tutorial, you will learn how to use the SQL Server ABS () function to return the absolute value of a number.

  4. SQL Server ABS () Function - TutorialsTeacher.com

    SQL Server ABS () function is a mathematical function that returns the absolute (positive) value of a given numeric expression. The ABS () function changes negative values to positive values. It has no …

  5. SQL ABS () function - w3resource

    Feb 16, 2026 · This SQL query is designed to retrieve distinct absolute values of negative commission amounts from the 'agents' table. The ABS () function is used to ensure that any negative commission …

  6. ABS – SQL Tutorial

    The SQL ABS function is a built-in mathematical function that is used to return the absolute (positive) value of a numeric expression. The ABS function is commonly used in SQL queries to perform …

  7. SQL | Math Functions | ABS() | Codecademy

    May 29, 2023 · The ABS() function in SQL returns the absolute value of a given number. That means, it effectively converts negative numbers to positive numbers, and leaves positive numbers unchanged.

  8. SQL ABS Function - Tutorial Gateway

    Here, we used the SQL Server ABS function to find the absolute value of the variable @i. It means ABS (-250.89765) and is assigned a new name, ‘Absolute Value’, using the ALIAS Column. Output. Along …

  9. How to Compute an Absolute Value in SQL - LearnSQL.com

    Learn how to calculate absolute values in SQL. Simplify data manipulation with the ABS () function and enhance your SQL proficiency.

  10. SQL ABS Function - Online Tutorials Library

    Learn how to use the SQL ABS function to return the absolute value of a number. Explore examples and syntax for better understanding.