日期:2014-05-18 浏览次数:20422 次
declare @t table (col varchar(30)) insert into @t select 'qadabcd (1werwe)' union all select 'adfabcd' select left(col,charindex('abcd',col)-1) from @t /* qad adf */