postgresql 字符串转整数 intinteger

Posted telwanggs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql 字符串转整数 intinteger相关的知识,希望对你有一定的参考价值。

 

--把‘1234‘转成整数
select cast(‘1234‘ as integer ) ;
--用substring截取字符串,从第8个字符开始截取2个字符:结果是12
select cast(substring(‘1234abc12‘,8,2) as integer)
---使用to_number函数来转换成整数
---to_number(text, text)  返回的类型 numeric     把字串转换成numeric   to_number(‘12,454.8-‘, ‘99G999D9S‘)
select to_number(‘12121‘,‘999999999‘)

以上是关于postgresql 字符串转整数 intinteger的主要内容,如果未能解决你的问题,请参考以下文章

go语言数据类型转换

go语言数据类型转换

Postgresql时间戳long转日期,转字符串,转timestamp,日期转换错误定位及解决

作为 PostgreSQL 查询的一部分,如何将整数转换为字符串?

PostgreSQL:错误:运算符不存在:整数 = 字符变化

如何在 PostgreSQL 中将长 NUMERIC 整数转换为位字符串?