如何连接具有“.”的值在 postgresql 中?

How to concatenate the values that have a "." in postgresql?


我有这个 table


1.3.6.7.8
22.6.99.9
1-3-6-7-9
1 3 6 7 9


在我请求 postgresql 之后我想要这个


13678
226999
13679
13679

使用regexp_replace():

select replace(col, '[^0-9]', '', 'g')

Here 是一个 db<>fiddle.