Remove zeros from sql stored procedure output

I am writing somw stored procedure in sql. But i ma gettng some null values as output. so I want to remove that null value records coming as output.

Add an additional filter to your WHERE clause.

.....
WHERE
     Column1 IS NOT NULL
     --- your other where filters here.
....

Hi
Use this : ISNULL(fieldname,'') <> ''
Cheers