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,715
  • 17
  • 91
  • 122

2 Answers2

1

Yes.

SELECT COUNT(*) FROM Table WHERE Field = 'Car'
recursive
  • 83,943
  • 34
  • 151
  • 241
0

Is car a table?

select count(1) from car

Just like any other query.

marcc
  • 12,295
  • 7
  • 49
  • 59