--首先,你是按什么规则拆? 我举个例子 你要按字段中的逗号拆开,假设字段名叫text
--用charindex和substring这2个函数
select substring(text,1,charindex(',',text)-1) as [before] ,substring(text,charindex(',',text),len(text)) as [after] from table
本文共 252 字,大约阅读时间需要 1 分钟。
--首先,你是按什么规则拆? 我举个例子 你要按字段中的逗号拆开,假设字段名叫text
--用charindex和substring这2个函数
select substring(text,1,charindex(',',text)-1) as [before] ,substring(text,charindex(',',text),len(text)) as [after] from table
转载于:https://www.cnblogs.com/xubao/p/11008158.html