Postgres sequelize raw query to get count returns string value(Postgres sequelize 原始查询以获取计数返回字符串值)
问题描述
我在我的 node-express 服务器中使用 postgresql sequelize.
I am using postgresql sequelize in my node-express server.
当我运行以下 SQL 命令时,我得到一个字符串值作为结果.
When I run the following SQL Command, I am getting a string value for result.
我想获取此计数的 整数 值.
I want to get Integer value for this count.
SELECT count(id) from collaborators where id<3
结果:
count = [ { count: '1' } ]
有什么方法可以获取结果的数值吗?还是我总是需要使用 parseInt(count, 10) 来获取 int 值?
Is there any way to get number values for result? Or do I always need to use parseInt(count, 10) to get int value?
感谢您的帮助!
推荐答案
@DemtriOS 正确的是 count
返回 bigint
因此解释为 string
,您可以直接在查询中直接对它进行类型转换,如下所示:
@DemtriOS is correct that count
returns bigint
hence interpreted into string
, you can directly typecast it directly on your query like so:
SELECT COUNT(id)::int
FROM collaborators
WHERE id < 3
这篇关于Postgres sequelize 原始查询以获取计数返回字符串值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Postgres sequelize 原始查询以获取计数返回字符串值
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01