• id int,

    name varchar(50),

    sal int

    With the above datatypes you can not have a table:

    ,venu ,200

    null,fanu ,3600

    If the id is an int you can not have both a NULL value and a 'non value' or empty string.

    For selection you can locate the NULLs with:

    id IS