Viewing 2 posts - 1 through 2 (of 2 total)
S,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
When a variable is created in SQL with the declare statement it is created with no data and stored in the variable table (vtable) inside SQLs memory space. The...
January 29, 2008 at 6:27 pm
#773089
Stephen Baez, I believe this is what you are looking for:
SELECT COUNT(*) AS TotalRows, COUNT(id) AS NonNULLRows, COUNT(*) - COUNT(id) AS NULLRows FROM
Modify to fit your database.
COUNT(*) does...
January 29, 2008 at 6:19 pm
#773088