It is advisable to include not null checks when performing checks on columns, as the values in the columns may be null rather than an empty string(”). For instance, when checking the age and phone columns, you may want to consider adding not null checks to avoid errors that may arise from null values in these columns.
2
Answers
Please try filtering using below :-
OR
Please note the additional parentheses separating both conditions with ‘&’ operator. And one set of parentheses for ‘~’ (NOT operator)
It is advisable to include not null checks when performing checks on columns, as the values in the columns may be null rather than an empty string(”). For instance, when checking the age and phone columns, you may want to consider adding not null checks to avoid errors that may arise from null values in these columns.
Below filter condition should help.