开发者

access vba replace vblf's with vbcrlf's

Lets s开发者_如何转开发ay for example my table name is "thistablelf" and the column where I want to replace all the vblf occurances is called "vblftovbcrlf".

How do I replace all occurances of vblf's to vbcrlf's?


IIRC the vb* constants dont work in Access SQL so how about;

UPDATE thistablelf 
  SET vblftovbcrlf = replace([vblftovbcrlf],Chr(13),Chr(13) & Chr(10));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜