Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concatenate / append field in UPDATE statement 1

Status
Not open for further replies.

projecttoday

Programmer
Feb 28, 2004
208
US
Is there any way to concatenate a value onto a field as opposed to just overwriting it when using an UPDATE statement?

Instead of

UPDATE tblTable SET fld = "abc" WHERE fld2="b"

I want

UPDATE tblTable SET fld = fld & "abc" WHERE fld2="b"
 
By the way, thanking popups aren't coming up on my computer. And I didn't get an email for the response.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top