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

CONCATENATION

Status
Not open for further replies.
Joined
Jun 1, 2006
Messages
58
Location
US

Hi all,

I need to update a table such that the existing values in the column are still there and the new values are concatenated.

I tried using the concat function but it is not accepting the column name as a value

column_name = concat(column_name,'1')

This gives an error saying column_name is invalid identifier.

Any help is appreciated.

Thanks,
 
Try [tt]column_name = column_name || '1';[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top