更新为第一个字符之后的数据:
UPDATE a13 SET aa =t.string FROM a13,(select ID,substring(aa,charindex('',aa)+1,len(aa)-charindex('',aa)) as string from a13) t WHERE a13.ID = t.ID
这样写:
update tablename set aa = 'gold field probe device' where aa like '%_gold field probe device%'
不是我想要的结果,我想要的是 _ 之后的字母。
不知道 access里有没有 split拆分函数,可以用这个
你写个语句我试试