E
erwt
I've got a table like this
ProductID Ordere
132 TRU
45 TRU
145 FALS
48 TRU
74 FALS
145 FALS
85 TRU
64 TRU
74 FALS
I want to have how many times a product is not ordered. So this mus
be the result
ProductID Ordere
145
74
I've tried GROUP BY, COUNT, COUNT(DISTINCT) but nothing works. Ca
anyone help me
ProductID Ordere
132 TRU
45 TRU
145 FALS
48 TRU
74 FALS
145 FALS
85 TRU
64 TRU
74 FALS
I want to have how many times a product is not ordered. So this mus
be the result
ProductID Ordere
145
74
I've tried GROUP BY, COUNT, COUNT(DISTINCT) but nothing works. Ca
anyone help me