I need to know the number of records a field has in SQL SERVER 2008. If I execute the statement:
select count(*) from 'tabla'
the result that throws me is 996.561
but if I execute the sentence:
select count(e-mail) from 'tabla'
the result you throw at me is 996,561 (the same amount as if you counted all the records)
I have already reviewed the field manually and I know that many of my clients did not register their e-mail, so why does it give me the same result?