0

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.

Canavar
  • 47,036
  • 17
  • 87
  • 121

2 Answers2

1

Yes.

SELECT COUNT(*) FROM Table WHERE Field = 'Car'
recursive
  • 80,919
  • 32
  • 145
  • 234
0

Is car a table?

select count(1) from car

Just like any other query.

marcc
  • 12,239
  • 7
  • 48
  • 59