--首先,你是按什么规则拆? 我举个例子 你要按字段中的逗号拆开,假设字段名叫text

--用charindex和substring这2个函数   
select substring(text,1,charindex(',',text)-1) as [before]
,substring(text,charindex(',',text),len(text)) as [after]
from table

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-21
  • 2021-12-13
  • 2022-02-14
  • 2021-05-25
  • 2021-09-06
  • 2021-12-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-13
  • 2022-01-01
  • 2022-12-23
  • 2022-01-01
  • 2022-12-23
相关资源
相似解决方案