由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - SQL Server里精度是咋定义的?
相关主题
SQL Server 2000: 计算时间差怎样精确到小时求教:SQL 钱的结果输出格式
A SQL query never stop running is bothering me: help needed (转载)convert datetime to ''
for round() function in SQLRe: 刚电面一个,fail了 (转载)
How to convert this datetime in SQL Server?simple access question
HOW TO CONVERT % text into numbers in Access?stupid question
一个关于T-SQL的问题help! A bug about date type !
转换成时间的格式 MS SQLRe: [转载] JDBC用完了oracle的large pool (memor
SQL Server - convert datetime to a string YY-MM-DD HHHow to avoid automatically round up in excel
相关话题的讨论汇总
话题: decimal话题: sql话题: server话题: 精度话题: convert
进入Database版参与讨论
1 (共1页)
i********r
发帖数: 12113
1
x:decimal(30,10)
y:decimal(20,5)
x*y => decimal(30+20+1, 10+5)
这样precision就51>38,好像系统自动把scale降级到6,是不是这样?我怎么样才能提
高scale,比如保持10
i****a
发帖数: 36252
2
Convert y to be the same pricision as x.

[发表自未名空间手机版 - m.mitbbs.com]

【在 i********r 的大作中提到】
: x:decimal(30,10)
: y:decimal(20,5)
: x*y => decimal(30+20+1, 10+5)
: 这样precision就51>38,好像系统自动把scale降级到6,是不是这样?我怎么样才能提
: 高scale,比如保持10

B*****g
发帖数: 34098
3
ding。
always convert yourself instead of waitting for system

能提

【在 i****a 的大作中提到】
: Convert y to be the same pricision as x.
:
: [发表自未名空间手机版 - m.mitbbs.com]

g***l
发帖数: 18555
4
这个怎么学的,精度也自己加起来了。
i********r
发帖数: 12113
5
我这个例子举的不好。应该是
x(30, 5). y(20,10). convert y to x. then you lose scale of y

【在 i****a 的大作中提到】
: Convert y to be the same pricision as x.
:
: [发表自未名空间手机版 - m.mitbbs.com]

i********r
发帖数: 12113
6
go to read manual

【在 g***l 的大作中提到】
: 这个怎么学的,精度也自己加起来了。
1 (共1页)
进入Database版参与讨论
相关主题
How to avoid automatically round up in excelHOW TO CONVERT % text into numbers in Access?
有什么工具能sync oracle和 sqlserver的database吗?一个关于T-SQL的问题
请教mssql一个问题, 关于add extended properties only to float field转换成时间的格式 MS SQL
面试中的一道sql的题目。SQL Server - convert datetime to a string YY-MM-DD HH
SQL Server 2000: 计算时间差怎样精确到小时求教:SQL 钱的结果输出格式
A SQL query never stop running is bothering me: help needed (转载)convert datetime to ''
for round() function in SQLRe: 刚电面一个,fail了 (转载)
How to convert this datetime in SQL Server?simple access question
相关话题的讨论汇总
话题: decimal话题: sql话题: server话题: 精度话题: convert