Actually I tried to run a is null
SQL Statement on a SAP HANA Database using the SAP HANA Studio. This does not work because SQLScript has no is not null
or is null
function. My statement looks like:
Select *
From MSEG
Where KDAUF is null
Unfortunately it does not work. Does anybody know an alternative approach which is practicable using SAP HANA SQLScript? On the internet I found a hint to either use NULLIF
or COALESCE
. But I neither know how to use this function nor to adapt it to a working WHERE
condition.