Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update floor-transact-sql.md
Changed return type for `decimal(p, s)` to `decimal(p, 0)`, rather than `decimal(38, s)`.
  • Loading branch information
sqlHippo authored Oct 13, 2025
commit 096040e4be4ae4488e7fa376872440332dade402
2 changes: 1 addition & 1 deletion docs/t-sql/functions/floor-transact-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**|
Expand Down