LIKE NULL makes no sense. It does not make sense. LIKE is used to compare a partial string using wildcards or a complete string without wildcards.
Depending on the DBMS, you should NOT have NULL,
SELECT * FROM [Table] WHERE (NOT Izdava IS NULL)
David source share