sql多条件查询语句

sql多条件查询语句

如上图:三个文本可选项,那sql语句怎么写呢?

1、首先获取三个文本的值分别为Name,Age,Sex.

2、string sql="select * from 表 where 1=1";

3、if(Name!="")

{

sql=sql+"and userName like '%" + Name + "%'";

}

if(Age!="")

{

sql=sql+"and Age like '%" + Age + "%'";

}

if(Sex!="")

{

sql=sql+"and Sex like '%" +Sex + "%'";

}

上一篇:Maven3在Eclipse上安装插件


下一篇:spring-boot学习资料