Skip to content

nvl2

function nvl2(
col1,
col2,
col3): Column;

Defined in: functions/conditional.ts:103

Returns col2 if col1 is not null, or col3 if col1 is null.

Parameter Type
col1 ColOrName
col2 ColOrName
col3 ColOrName

Column