select stuff('hi,world!',4,4,'***') --返回值hel***orld! --返回從指定位置開始指定長度的字符串 select substring('Hello,World!',2,10) --返回值ello,World --將字符串中某段字符替換為指定的字符串 select replace('hi,world!','ll','aa') --返回值heaao,world! --...
www.dbjr.com.cn/article/382...htm 2025-5-17