select *
,iif (DAYSS>=1, DAYSS, 'Out of Stock') as NEWDA
from TABLE3
got an error
converting data type varchar to numeric.
when tried to convert numeric to varchar but that is also an error
use case when isnumeric (DAYSS) >=0 then CAST(DAYSS as varchar)
Conversion failed when converting the varchar value '7.350000' to data type int.
'7.350000'isn't a validintvalue; integers don't have decimal places. - Larnutry_convert- James Z