String concatenation within INFORMIX-SQL "Perform" screens.
Posted
by Frank Developer
on Stack Overflow
See other posts from Stack Overflow
or by Frank Developer
Published on 2010-03-07T20:06:41Z
Indexed on
2010/03/08
6:21 UTC
Read the original article
Hit count: 616
informix
How can I concatenate two char columns within a perform screen?
example:
table sample
col1 char(1), col2 char(1)
. .
after editadd of sample
let label_3 = sample.col1 + sample.col2
.. this didn't work, I even tried using subscripts for the 2 cols but no dice!
© Stack Overflow or respective owner