Hi all,
In my table there is a varchar column having NULL and string names.
while i am running select on this table the NULL values are not returned. the statement returns only non null values. my query is
SELECT EMP_ID, AGE FROM EMPLOYEE WHERE EMP_NAME <> 'BABU'
in my table there is records with null values. but it retuns only non null values.
thanks in advance,
dhana.
In my table there is a varchar column having NULL and string names.
while i am running select on this table the NULL values are not returned. the statement returns only non null values. my query is
SELECT EMP_ID, AGE FROM EMPLOYEE WHERE EMP_NAME <> 'BABU'
in my table there is records with null values. but it retuns only non null values.
thanks in advance,
dhana.
Comment