I use the following script to get data from an MS Access database:
Set rs = Server.CreateObject("ADODB.Recordset")
sSQL = "SELECT DISTINCT name, SUM(hits) FROM tablename GROUP BY name"
rs.open sSQL, cn, 3, 3
What I would like to do is order the results by...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.