gpt4 book ai didi

sql - PostgreSQL : How to select values with only two digits after decimal point in a table?

转载 作者:行者123 更新时间:2023-11-29 12:05:07 25 4
gpt4 key购买 nike

我有一个名为 nums 的表。

CREATE TABLE nums (num numeric);
INSERT INTO nums SELECT * FROM (VALUES(10.11),(11.122),(12.22),(13.555)) t;

它有以下几行

select * from nums

num
--------
10.11
11.122
12.22
13.555

所以我的问题是如何获取小数点后只有两位数的值(.)?


预期输出:-

    num
--------
10.11
12.22

最佳答案

你可以试试Pattern Matching

SELECT * FROM nums WHERE num::text ~ '(^\d+(\.\d{1,2})?$)';

Mathematical Functions and Operators - Floor

SELECT * FROM nums WHERE FLOOR (num*100)=num*100

关于sql - PostgreSQL : How to select values with only two digits after decimal point in a table?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27167687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com