Dec 12, 2003 #1 dbinfoweb Technical User Nov 20, 2001 59 US I am just wondering if there is a way to remove the very last character in a field. Thanks in advance for any help.
I am just wondering if there is a way to remove the very last character in a field. Thanks in advance for any help.
Dec 13, 2003 #2 VDavid Programmer Sep 14, 2003 118 VE I think you can use something like Code: update TABLE set fl=(select SUBSTRING(fl,1,length(fl)-1) from TABLE where id=1) where id=1 [/color] Hope this helps, David. Upvote 0 Downvote
I think you can use something like Code: update TABLE set fl=(select SUBSTRING(fl,1,length(fl)-1) from TABLE where id=1) where id=1 [/color] Hope this helps, David.
Dec 16, 2003 Thread starter #3 dbinfoweb Technical User Nov 20, 2001 59 US Yes, it does. Thanks so much for your help, David. Upvote 0 Downvote