数据库
首页 > 数据库> > postgresSql中replace使用

postgresSql中replace使用

作者:互联网

uuid中横杠替换掉

uuid函数,参考链接:https://blog.csdn.net/weixin_42585386/article/details/108224690

select uuid_generate_v4() 查询是一串数字加横杠

把横杠替换掉,用replace函数,

参考链接:https://blog.csdn.net/lanxingbudui/article/details/83854735

例子:

select replace(CAST(uuid_generate_v4() as text), '-', '')

replace第一个参数是替换表中哪个字段

第二个参数是将什么替换掉

第三个参数是将替换成什么数据

 

为什么用cast呢?

是因为replace中第一个参数必须是字符类型,所以先用cast转成字符类型,再替换。

 

标签:postgresSql,uuid,replace,参数,使用,csdn,横杠,替换
来源: https://www.cnblogs.com/gaosj20210301/p/15193474.html