count fields that have null values for one record???

supernintendo

New member
Local time
Today, 17:30
Joined
Mar 30, 2003
Messages
5
hi , i want to be able to create a query that will count all the fields that have null values for one record in a table

please could somebody help me achive this ,


thanks

Matt
 
Select Count(*) As CountOfNulls
From YourTable
Where SomeField Is Null;
 

Users who are viewing this thread

Back
Top Bottom