SELECT *
FROM [Table]
WHERE (Izdava NOT LIKE NULL)
// how to check if Izdava is not NULL
|
|
LIKE NULL is meaningless. It doesn't make sense. LIKE is used for comparing a partial string using wildcards, or a complete string without wildcards. Depending on the RDBMS you want NOT IS NULL,
|
|||
|
|
|
I think this is what you want.
Information about NULL values from MSDN:
|
||||
|
|
|
If you are checking for not null, dont use the like clause. Just write
|
|||
|
|
|
If it's MSSQL or Oracle then do this:
|
|||
|
|