Hello ,
I am trying to merge two columns in the following way
(table's name=ISSUE,first column=issuer_cusip, second column=issue_cusip)
UPDATE ISSUE SET issuer_cusip = CONCAT (issuer_cusip,issue_cusip);
but i am receiving the following error message:
undefined function "CONCAT" in expression. Any hint of what went wrong or if possible how to do it?
I am trying to merge two columns in the following way
(table's name=ISSUE,first column=issuer_cusip, second column=issue_cusip)
UPDATE ISSUE SET issuer_cusip = CONCAT (issuer_cusip,issue_cusip);
but i am receiving the following error message:
undefined function "CONCAT" in expression. Any hint of what went wrong or if possible how to do it?