常規的多條件查詢可以寫成這樣
<%
set rs= server.createobject("adodb.recordset")
if fl1=0 then sql ="select * from tuku where img<>''"
if fl2<>0 and fl2<>"" then sql=sql&" and kj="&fl2
if fl3<>0 and fl3<>"" then sql=sql&" and fg="&fl3
if fl4<>0 and fl4<>"" then sql=sql&" and zj="&fl4
if fl5<>0 and fl5<>"" then sql=sql&" and ys="&fl5
if fl6<>0 and fl6<>"" then sql=sql&" and hx="&fl6
rs.open sql,conn,1,1
if rs.eof then%>
求助下面的臨時表查詢怎麼能實現上面這樣的查詢方式
<%if l1=0 and l2=0 then
sql2="select xx.* from picture as xx,(select tid,min([px]) as zz from picture group by tid) as yy where xx.tid=yy.tid and xx.px=yy.zz"
elseif l2>0 and l3=0 then
sql2="select xx.* from picture as xx,(select tid,min([px]) as zz from picture where lb="&l2&" group by tid) as yy where xx.tid=yy.tid and xx.px=yy.zz and xx.lb="&l2&""
elseif l3>0 and l4=0 then
%>
照這樣寫下去太亂了,看的眼都花了,我的條件有很多。
臨時表dataTable 求助,
有臨時表datatable它的內容為 我把它匯入到excel 再用查詢 select sum value name from tb group by name 有點問題,知道這兒高手多,麻煩指點下小弟,知道這不是問 問題的地方,請諒解 無奈之下,先自己用迴圈處理了。id value name 1 1...
mysql怎麼是臨時表 MySQL臨時表
在本教程中,我們將討論mysql臨時表,並演示如何建立,使用和刪除臨時表。mysql臨時表簡介 在mysql中,臨時表是一種特殊型別的表,它允許您儲存乙個臨時結果集,可以在單個會話中多次重用。當使用join子句查詢需要單個select語句的資料是不可能或遇到瓶頸的時候,臨時表非常方便。在這種情況下,...
mysql 查詢臨時表 MySQL臨時表與記憶體表
在mysql中有三種虛擬表 臨時表 記憶體表 檢視。下面簡單介紹一下臨時表和記憶體表的使用。1 臨時表 mysql臨時表在我們需要儲存一些臨時資料時是非常有用的。臨時表在mysql 3.23版本中新增。臨時表只在當前連線可見,當關閉連線時,mysql會自動刪除表並釋放所有空間。如果你使用了其他mys...