当前位置: 代码迷 >> Android >> 关于sql语句的写法解决办法
  详细解决方案

关于sql语句的写法解决办法

热度:38   发布时间:2016-04-28 06:48:32.0
关于sql语句的写法
    页面上有五个查询条件,我想实现他们可以单查也可以组合查询请问
这个sql怎么写啊,我是这样写的但是不对
String sql = "Select station,city,stationlevel,city,stationlevel,citylevel,citypy From b_train_station where station ='+station+ and city ='+city+' and stationlevel='+stationlevel+' and citylevel='+citylevel+' and citypy='+citypy+'";
------解决方案--------------------
String sql = "Select station,city,stationlevel,city,stationlevel,citylevel,citypy From b_train_station where station ='" + station + "' and city ='"+ city + "' and  stationlevel='" +  stationlevel + "' and citylevel='" + citylevel +"' and citypy='"+ citypy + "'";
  相关解决方案