I have a table with with details of my companies products, and one of the columns has categories for the products but also empty strings for products that have not yet been categorized.
I'm trying to filter out the category 'trash' and leave the rest including the empty ones, but when I apply the filter, the empty ones are disappearing too... is this normal? how can I filter out the 'trash' and leave everything else including empty values?
I'm using a WHERE clause like this:
WHERE
table.month = 8 AND table.category <> 'trash'
NULLvalues.month = 8that havecategory <> 'trash'?