String concatenation within INFORMIX-SQL "Perform" screens.
- by Frank Developer
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!