在上一篇文章中,我觉得对于动态组装的sql语句可以使用
WHERE 1=1
这种方式来动态组装,其实这样是一个非常不好的方法,这样简便的方法会造成性能的损失。在使用了“1=1”的过滤条件以后数据库系统就无法使用索引等查询优化策略,数据库系统将会被迫对每行数据进行扫描以比较此行是否满足过滤条件。
可以使用下面的方法来解决
private void doQuery(){
boolean hasWhere=false;
StringBuilder sql=new StringBuilder("SELECT * FROM T_Employee");
if(选择了某查询条件){
haswhere=appendWhereIfNeed(sql,haswhere);
sql.appendLine(具体查询条件内容);
}
if(选择了另外的查询条件){
haswhere=appendWhereIfNeed(sql,haswhere);
sql.appendLine(具体查询内容);
}
}
private boolean appendWhereIfNeed(StringBuilder sql,Bool haswhere){
if(!haswhere){
sql.appendLine("WHERE");
}else{
sql.appendLine("AND");
}
return true;
}