开发者

access vba replace vblf's with vbcrlf's

开发者 https://www.devze.com 2023-01-10 01:47 出处:网络
Lets s开发者_如何转开发ay for example my table name is\"thistablelf\"and the column where I want to replace all the vblf occurances iscalled\"vblftovbcrlf\".

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

精彩评论

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