Postgres sequelize 原始查询以获取计数返回字符串值

Postgres sequelize raw query to get count returns string value(Postgres sequelize 原始查询以获取计数返回字符串值)
本文介绍了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 原始查询以获取计数返回字符串值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)