About 873,000 results
Open links in new tab
  1. SQL Server CEILING () Function - W3Schools

    Definition and Usage The CEILING () function returns the smallest integer value that is larger than or equal to a number. Tip: Also look at the FLOOR () and ROUND () functions. Syntax …

  2. CEILING (Transact-SQL) - SQL Server | Microsoft Learn

    Sep 3, 2024 · CEILING returns the smallest integer greater than, or equal to, the specified numeric expression.

  3. SQL Server CEILING () Function

    Learn how to use the SQL Server CEILING function to round up a number to the nearest integer greater than or equal to the input number.

  4. SQL Rounding Functions with ROUND, CEILING, FLOOR, Bankers …

    Sep 20, 2023 · The T-SQL ceiling and floor functions are two additional ways of converting decimal values to integer values within SQL Server. If you wanted to report the price of items …

  5. CEIL()/CEILING() in SQL: Examples, Use Cases & Error Handling

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

  6. CEILINGSQL Tutorial

    In SQL, the CEILING function is used to round a numeric value up to the nearest integer or specified decimal places. The CEILING function returns the smallest integer that is greater …

  7. SQL Server CEILING () Function: Rounds Decimal Value

    In SQL Server, the CEILING () function rounds the decimal number to the nearest integer number that is larger than or equal to the specified number.

  8. SQL Server: CEILING Function - TechOnTheNet

    This SQL Server tutorial explains how to use the CEILING function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the CEILING function returns the …

  9. Mastering the CEIL Function in SQL: A Comprehensive Guide

    What Is the CEIL Function? The CEIL function (also called CEILING in some databases) in SQL rounds a numeric value up to the smallest integer greater than or equal to the input, or to a …

  10. SQL CEILING Function - Tutorial Gateway

    The SQL Server CEILING function is a mathematical function used to return the closest (smallest) integer value, which is greater than or equal to the specified expression.