What are the exact possibilities for Calculated Columns in SAP HANA?
I have often trouble building calculated columns - even though using SQL (not column engine)
So I have to use concat(col1, col2)
instead of col1 || col2
Now I want to do:
the equivalent of ABAP CONDENSE( COL1 )
HANA SQL : replace_regexpr ( '[[:space:]]+'
IN COL1
WITH ' ')
How to do it in a calculated column?