I got statements like this:
SELECT * From Table WHERE Feld IS NULL
SELECT * From Table WHERE Feld IS NOT NULL
Now I'm wondering how I could parametrize this query:
SELECT * From Table WHERE Feld IS :Value
As I cannot pas 'NOT NULL' to a parameter, I think thats not possible at all - but maybe somebody knows a solution for that? Thanks!