Hello Friends,
The following attempt to concatenate two memo fields in a SQL SELECT query fails, giving the error "String too long to fit. (Both memo fields are ordinary text.)
Yet this work-around is successful:
Is there a way to accomplish this all in the original SELECT SQL query?
Thanks
The following attempt to concatenate two memo fields in a SQL SELECT query fails, giving the error "String too long to fit. (Both memo fields are ordinary text.)
Code:
SELECT memofield1 + memofield2 AS bigmemo FROM temptbl_2 INTO dbf temptbl
Yet this work-around is successful:
Code:
SELECT memofield1, memofield2 FROM temptbl_2 INTO DBF temptbl
SELECT temptbl
REPLACE memofield2 WITH memofield1+memofield2 ALL
Is there a way to accomplish this all in the original SELECT SQL query?
Thanks