Is there any function to ignore records where a particular column value is null. I have created a left outer join (includes 4 tables) and populates some records. In this join, there is a field called “Tab Desc”. Whenever this field has NULL values I want to ignore those records.
Please advise.
Baskar
If you show the query I could give a more complete answer, but try adding something like
WHERE TabDesc IS NOT NULLto your query.EDIT: If TabDesc is a field you are joining on then do not use an outer join and it should solve your problem.