当前位置:主页 > 数据库 > PostgreSQL >

postgreSQL 数字与字符串类型转换操作

时间:2021-05-14 10:39:22 | 栏目:PostgreSQL | 点击:

数字转字符串

select cast(123 as VARCHAR);

字符串转数字

select cast('123' as INTEGER);

以此类推,应该也可以转换为其他数据类型。

补充:pgSql, mySql中字符串转化为数字

pgSql

语法 to_number(text, text)

例子

select to_number(trim(both 'ibs' from classname), '999999') as cn from bbs order by cn /*trim(both 'ibs' from classname)去除classname字段中的'ibs'字符*/

mySql

语法 str*1 / str+1 / -str /*str为varchar的数字,此处不一定是1,只要是数字即可*/

hql

语法 to_number(text, text)

例子

select b from BBS b where b.isDeleted=false order by to_number(trim(both 'ibs' from b.className), '999999')

您可能感兴趣的文章:

相关文章