Can any tell me how to write a query to get the rows affected below.
This is the query I wrote.
Select Date, Count (date) Total
From PRONOTES
group by date
which gives me this
Date Total
1900-01-01 00:00:00.000 1
and so on and so on
(148 row(s) affected)
how do I get it to just display the count for 148. I need it to create a dynamic array in ASP.
This is the query I wrote.
Select Date, Count (date) Total
From PRONOTES
group by date
which gives me this
Date Total
1900-01-01 00:00:00.000 1
and so on and so on
(148 row(s) affected)
how do I get it to just display the count for 148. I need it to create a dynamic array in ASP.