• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

为什么 SQL Server 在 int 转换为数据类型 numeric 时抛出算术溢出错误?

用户头像
it1352
帮助5

问题说明

在运行此代码时,SQL Server Management Studio 抛出了一个错误:

I have an error being thrown by SQL Server Management Studio when running this code:

declare @percentage numeric(3,2)
set @percentage = cast(15 as numeric(3,2))

但是当我将数字声明更改为

but when I change numeric declaration to

declare @percentage numeric(4,2)
set @percentage = cast(15 as numeric(4,2))

一切顺利.

数字数据类型有限制吗?

Is there a limitation for numeric data type?

正确答案

#1

Numeric 定义 TOTAL 位数,然后是小数点后的数字.

Numeric defines the TOTAL number of digits, and then the number after the decimal.

一个 numeric(3,2) 最多只能容纳 9.99.

A numeric(3,2) can only hold up to 9.99.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcakbgg
系列文章
更多 icon
同类精品
更多 icon
继续加载