VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / System Functions / ISNULL
In This Topic
    ISNULL
    In This Topic
    ISNULL( ColumnToTest, ReplacementIfNull )

    ISNULL tests the ColumnToTest for a NULL value. If the database entry is NULL it will be replaced with the ReplacementIfNull value. The return value is implicitly converted to the ColumnToTest value type if they types differ.



    Example

    This would replace any NULL values in the table with 0 for the AVG calculation.
    
    SELECT AVG( ISNULL(AColumn, 0)) FROM aTable;

    See Also