0
I have this query:
SELECT * FROM Tabela WHERE campo != "";
How to know the amount of records that do not meet this condition?
I know I can create another query and use affected Rows I can have the 2 values and compare but I wanted to know if there is a faster way.
Do a Count of the entire table, then do a Count with that condition and subtract the two results.
– rray