我目前正在研究 sql 语句,并对网络中的这个特定练习感到好奇。问题是“如何加密包含两个或多个空格的一行中的每个字母?(不包括空格) ”我在这里创建了一个示例表
sample
-----------------------
first
first second
first second third
first second third fourth
这是我想得到的:
sample
-----------------------
first
first second
first ****** *****
first ****** ***** fourth
这就是我到目前为止所尝试的:
select name, substring(name, E'(\\s\\w+\\s.*)') from sample ;