Counting Null Values

F

Frank Winston

How do I construct a query to count the number of records
in a table where no value has been entered into a Date field?
 
O

Oliver Gleß

Table Tabelle1
Field1: Name, String
Field2: DOB, Date/Time

SELECT Count(Tabelle1.Name) AS [CountResult]
FROM Tabelle1
WHERE (((Tabelle1.DOB) Is Null));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top