Count Function

Purdue15

Registered User.
Local time
Today, 03:23
Joined
Jun 12, 2013
Messages
29
What is a function I can write under criteria that will count each value inside that column?

For example [SELECT COUNT( * ) FROM "Weight"]

Thanks
 
SELECT COUNT(Field) AS New FieldName FROM Table;

I think you have to make a new field for each field. I don't think you can use * if there is more than 1 field in the query.

I find this very helpful.

http://www.w3schools.com/sql/default.asp

Dale
 
try

dcount("*","Weight")

or

SELECT Count(*) FROM WEIGHT
 

Users who are viewing this thread

Back
Top Bottom