From 096040e4be4ae4488e7fa376872440332dade402 Mon Sep 17 00:00:00 2001 From: Brandon Champion <90177253+sqlHippo@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:12:33 -0500 Subject: [PATCH] Update floor-transact-sql.md Changed return type for `decimal(p, s)` to `decimal(p, 0)`, rather than `decimal(38, s)`. --- docs/t-sql/functions/floor-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/functions/floor-transact-sql.md b/docs/t-sql/functions/floor-transact-sql.md index 99cdf4b8c5e..79c9831b341 100644 --- a/docs/t-sql/functions/floor-transact-sql.md +++ b/docs/t-sql/functions/floor-transact-sql.md @@ -41,7 +41,7 @@ The return type depends on the input type of *numeric_expression*: |Input type|Return type| |----------|-----------| |**float**, **real**|**float**| -|**decimal(*p*, *s*)**|**decimal(38, *s*)**| +|**decimal(*p*, *s*)**|**decimal(*p*, 0)**| |**int**, **smallint**, **tinyint**|**int**| |**bigint**|**bigint**| |**money**, **smallmoney**|**money**|