SQL 有没有更快的查询语句吗?
我数据库有 11万以上条数据 查询起来很慢 有没有更快的查询语句吗?我用这样查询最进更新的 50条数据 显示速度慢
Ax("<ul>")
sql="select top 50 * from AX_MUSILIST ORDER by ID DESC"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
if rs.bof and rs.eof then
Ax("<li>当前没有专辑!</li>")
else
do while not rs.eof
Ax("<li>"&rs("MusicName")&"</li>")
rs.movenext
loop
end if
rs.close
set rs=nothing
Ax("</ul>")