postgresql去掉字符串空白符以及首尾空格

--去除空白符
select regexp_replace('  a   s  d  
', E'\\s+', ' ', 'g')


--去除首空格
select regexp_replace(' a b d ',E'(^\\s*)','','g')  


--去除尾空格
select regexp_replace(' a b d ',E'(\\s*$)','','g')  


--去除首尾空格
select regexp_replace(' a b d ',E'(^\\s*)|(\\s*$)','','g')  


--去除首尾空格的函数
select trim(' a b d ')

你可能感兴趣的:(数据库编程)