Skip to content

Commit fe0feb9

Browse files
authored
Merge pull request MicrosoftDocs#524 from fbsolo/patch-14
Update ceiling-transact-sql.md
2 parents abb97e7 + 7b3223f commit fe0feb9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/t-sql/functions/ceiling-transact-sql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ms.workload: "Active"
3131
# CEILING (Transact-SQL)
3232
[!INCLUDE[tsql-appliesto-ss2008-all-md](../../includes/tsql-appliesto-ss2008-all-md.md)]
3333

34-
Returns the smallest integer greater than, or equal to, the specified numeric expression.
34+
This function returns the smallest integer greater than, or equal to, the specified numeric expression.
3535

3636
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
3737

@@ -43,13 +43,13 @@ CEILING ( numeric_expression )
4343

4444
## Arguments
4545
*numeric_expression*
46-
Is an [expression](../../t-sql/language-elements/expressions-transact-sql.md) of the exact numeric or approximate numeric data type category, except for the **bit** data type.
46+
An [expression](../../t-sql/language-elements/expressions-transact-sql.md) of the exact numeric or approximate numeric data type category. For this function, the **bit** data type is invalid.
4747

4848
## Return types
49-
Returns the same type as *numeric_expression*.
49+
Return values have the same type as *numeric_expression*.
5050

5151
## Examples
52-
The following example shows positive numeric, negative, and zero values with the CEILING function.
52+
This example shows positive numeric, negative numeric, and zero value inputs for the CEILING function.
5353

5454
```sql
5555
SELECT CEILING($123.45), CEILING($-123.45), CEILING($0.0);

0 commit comments

Comments
 (0)