SQL 改变类型

发布于 2024-11-03 05:12:44 字数 214 浏览 0 评论 0原文

您好,如果我有以下内容:

表 x {

 num1 double precision;
 num2 int;

}

,现在我想找出 num2/num1 并四舍五入到小数点后 1 位。

有没有办法在 SELECT 查询中做到这一点?对于双精度..我必须使用 numeric(4,1) 或类似的东西吗?

hi if i have the following :

table x {

 num1 double precision;
 num2 int;

}

and now i want to find out num2/num1 and round to 1 decimal place.

is there a way to do this in a SELECT query? for the double precision.. do i have to use numeric(4,1) or something like that?

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

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

发布评论

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

评论(2

时光与爱终年不遇 2024-11-10 05:12:44

您可以使用 round()

SELECT ROUND(num2/num1, 1) FROM x;

num1为浮点数时,PostgreSQL会自动将除法升级为浮点数:

> select 3/3.145927;
        ?column?        
------------------------
 0.95361399040727899916
(1 row)

并且:

> select round(3/3.145927, 1);
 round 
-------
   1.0
(1 row)

You can use round():

SELECT ROUND(num2/num1, 1) FROM x;

PostgreSQL will automatically upgrade the division to floating point when num1 is floating point:

> select 3/3.145927;
        ?column?        
------------------------
 0.95361399040727899916
(1 row)

And:

> select round(3/3.145927, 1);
 round 
-------
   1.0
(1 row)
征棹 2024-11-10 05:12:44

扩展 mu 的答案...根据您的 postgres 版本,您可能需要添加显式转换,因为 round(numeric, int) 存在,但 round(float, int) 不存在:

select round(num1::numeric/num2::numeric, 1);

Expanding on mu's answer... Depending on your postgres version, you might need to add an explicit cast, because round(numeric, int) exists but round(float, int) does not:

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