Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to handle null values in a float column,
this is the code,I am writing for null handling
Row1.FloatColumn=NULL?0:
Row1.FloatColumn
Talend is throwing a error saying 0 is a int ,
what value should I place there instead of 0.
I am using Talend Open Studio 7.3.1 DI
@Merffi Ramesh ,try the below one.
Row1.FloatColumn=NULL ? 0.0: Row1.FloatColumn
Thanks,
Manohar
@Merffi Ramesh ,try the below one.
Row1.FloatColumn=NULL ? 0.0: Row1.FloatColumn
Thanks,
Manohar