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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concat

Status
Not open for further replies.

Cadteach

Technical User
Joined
Nov 21, 2004
Messages
6
Location
US
I'm trying to combine 2 fields into 1 new field using concat. This is what I using

UPDATE 'idxactrs' SET 'idxactrs.desc' = concat(remarks1,remarks2)

It just says "You have an error in your SQL syntax near ''idxactrs' ...

Any Ideas?
 
You're using unnecessary and wrong quotes.
 
Solved..

Thanks, used

SELECT CONCAT( Remarks1, Remarks2, remarks3, remarks4, remarks5, remarks6) AS Descri
FROM IdxactRs;



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top