Apr 23, 2005 #1 chubby Programmer Apr 28, 2001 278 US I'm trying to add "*" the beginning and ending of a field that contains 1233 record. Field: comparment Table: tbl_compartment listing Update to: * Criteria: At the begining and end of each record Example: 4-77-0-C What I need *4-77-0-C*
I'm trying to add "*" the beginning and ending of a field that contains 1233 record. Field: comparment Table: tbl_compartment listing Update to: * Criteria: At the begining and end of each record Example: 4-77-0-C What I need *4-77-0-C*
Apr 23, 2005 #2 steven290 Programmer Mar 13, 2005 1,077 US i think its someting like, sure if its + or & update tbl_compartment set listing=('*' + listing + '*') where id=something Upvote 0 Downvote
i think its someting like, sure if its + or & update tbl_compartment set listing=('*' + listing + '*') where id=something
Apr 23, 2005 Thread starter #3 chubby Programmer Apr 28, 2001 278 US I'm using the QBE and I try this and it did not work. Upvote 0 Downvote
Apr 23, 2005 #4 steven290 Programmer Mar 13, 2005 1,077 US weird it worked for my, show your sql Upvote 0 Downvote