Ibatis+Oracle:如何更新浮点值

发布于 2024-09-28 23:40:12 字数 193 浏览 6 评论 0原文

我正在尝试更新oracle数据库中的浮点值,但保存的值只是浮点值的整数部分。

我使用表达式

update TABLE
SET VALUE = #value:NUMERIC#
WHERE ID = #id#

The Value is Defined as Number(19,4) NULL

I'm trying to update a float value in oracle database, but the saved value is only the integer part of the float value.

I'm using the expression

update TABLE
SET VALUE = #value:NUMERIC#
WHERE ID = #id#

The Value is defined as Number(19,4) NULL

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日情怀 2024-10-05 23:40:12

您很可能正在尝试使用浮点值更新数据类型 NUMBER(p) 的列。

例如,如果我创建一个列类型为 NUMBER(2) 的表并尝试将 10.2 插入该列,则插入的实际值为 10。
试试这个。

CREATE TABLE t
  ( a NUMBER(2)
  );
INSERT INTO t VALUES
  (10.2
  );
SELECT * FROM t;

输出将为 10。
如果要将浮点值保存到列中,请将其数据类型更改为“NUMBER”,或者如果您确定浮点值的精度和小数位数,则可以使用 NUMBER(p,s)。阅读有关 NUMBER 类型的信息 < a href="http://download.oracle.com/docs/cd/A81042_01/DOC/server.816/a76965/c10datyp.htm#743" rel="nofollow">此处

Most likely you are trying to update a column of data type NUMBER(p) with a floating point value.

For example, If I create a table with a column type of NUMBER(2) and try to insert 10.2 into that column the actual value that gets inserted is 10.
Try this.

CREATE TABLE t
  ( a NUMBER(2)
  );
INSERT INTO t VALUES
  (10.2
  );
SELECT * FROM t;

The output would be 10.
If you want to save floating point values into the column change its datatype to just 'NUMBER' or if you are sure about the precision and scale of the floating point values, you can use NUMBER(p,s).Read about NUMBER type here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文