发布网友 发布时间:2024-10-23 07:36
共1个回答
热心网友 时间:9分钟前
把sql语句贴出来,否则没人能帮到你。
给个示例,一般如下:
sql="select id,title,bid,sid,m,u,sortid,clicks,times from product where 1=1"
if not isNul(m) then sql=sql&" and m="&m
if not isNul(u) then sql=sql&" and u="&u
if not isNul(bid) then sql=sql&" and bid="&bid
if not isNul(sid) then sql=sql&" and sid="&sid
if not isNul(keyw) then sql=sql&" and title like '%"&keyw&"%'"
sql=sql&" order by sortid desc,id desc"