请大家帮帮忙啊

解决方案 »

  1.   

    啥意思,sql查询还是什么,sql那就是 where条件吧,自己写那就是 是否包含查找内容
      

  2.   

    http://zhidao.baidu.com/question/532304964.html
    图片没上传成功,,看看这个网站的截图。这个意思
      

  3.   

    简单的就是where后多个条件
    复杂的就是 生成动态的sql
      

  4.   

    http://www.51aspx.com/code/LoundarMall
      

  5.   

    这个不需要特别难把,就是在后台拼接sql文把 
      

  6.   

    eg.
    1 select * from table where id in (A,B,C...)
    or
    2 select * from table where id between A and B
    or
    3 用like,模糊查询
      

  7.   

    http://zhidao.baidu.com/question/532304964.html
    看了你发的这个,其实就是查询的时候条件多一点罢了。4 select proName,proDetails from product where price between 500 and 999,os='Android'