tags:

views:

33

answers:

2

hi there,

How can I count the number of certain records in database using classic asp? For example, I want to count how many record are there for Car..I'm using ms access. need help. thank you.

A: 

Is car a table?

select count(1) from car

Just like any other query.

marcc
+1  A: 

Yes.

SELECT COUNT(*) FROM Table WHERE Field = 'Car'
recursive