Hi,
Is there a way to make this query shorter or more importantly, make it more efficiency
Then, for the top sample, I ran another getSum for ALL Users and DO WHILE LOOP to show results; while for the bottom one, to print the results, I SPLIT the arrayPts to display.
I'd like to know which is a better practice.
If there's a better way to do just that, I'd like to know as well.
Thanks!
Is there a way to make this query shorter or more importantly, make it more efficiency
Code:
sql = "SELECT TOP 1 SUM(a.numTotalPt) AS tMonthlyPt " _
& "FROM tblCPBPS a " _
& "INNER JOIN tblUsers b " _
& " ON a.idUser = b.UserID " _
& "WHERE a.dtAddDate LIKE '" & gMonth & "%" & gYear & "%' " _
& " AND b.Saleman = 1 " _
& " AND b.Active = 1 " _
& "GROUP BY a.idUser " _
& "ORDER BY tMonthlyPt DESC"
set rs = objConn.Execute(sql)
If NOT rs.eof then
highest = rs("tMonthlyPt")
End if
call closeRS(rs)
'Get Lowest Score of Seller
sql = "SELECT TOP 1 SUM(a.numTotalPt) AS tMonthlyPt " _
& "FROM tblCPBPS a " _
& "INNER JOIN tblUsers b " _
& " ON a.idUser = b.UserID " _
& "WHERE a.dtAddDate LIKE '" & gMonth & "%" & gYear & "%' " _
& " AND b.Saleman = 1 " _
& " AND b.Active = 1 " _
& "GROUP BY a.idUser " _
& "ORDER BY tMonthlyPt ASC"
set rs = objConn.Execute(sql)
If NOT rs.eof then
lowest = rs("tMonthlyPt")
End if
call closeRS(rs)
[code]
Also,
Is it better/faster processing if I do this
[code]
sql = "SELECT a.idUser, SUM(a.numTotalPt) AS tMonthlyPt " _
& "FROM tblCPBPS a " _
& "INNER JOIN tblUsers b " _
& " ON a.idUser = b.UserID " _
& "WHERE a.dtAddDate LIKE '" & gMonth & "%" & gYear & "%' " _
& " AND b.Saleman = 1 " _
& " AND b.Active = 1 " _
& "GROUP BY a.idUser " _
& "ORDER BY SUM(a.numTotalPt) DESC"
set rs = objConn.Execute(sql)
If NOT rs.eof then
do while not rs.eof
arrayPts = arrayPts & ";" & rs("idUser") & "," & rs("tMonthlyPt") & ";"
if len(rs("tMonthlyPt"))>0 then
if cdbl(rs("tMonthlyPt")) > cdbl(highest) then
highest = rs("tMonthlyPt")
elseif cdbl(rs("tMonthlyPt")) < cdbl(lowest) then
lowest = rs("tMonthlyPt")
end if
end if
rs.movenext
loop
End if
Then, for the top sample, I ran another getSum for ALL Users and DO WHILE LOOP to show results; while for the bottom one, to print the results, I SPLIT the arrayPts to display.
I'd like to know which is a better practice.
If there's a better way to do just that, I'd like to know as well.
Thanks!