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 biv343 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
Nov 21, 2004
6
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?
 
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