Oppure fare 64 query
codice:
<%
for kk = 1 to 64
  sql = "select sum(DatiA"&kk&") as totale FROM TBL_raccolta_dati
where giorno = ("& current_day & ") and mese = ("& current_month & ") and anno = ("& current_year & ")" 
  ...
  response.write rs("totale") & "<br>"
next
%>