string SQL="select * from where "+searchtype+" like '%"+searchkey+"%' "; 是什么意思,解析希望详细点
if(booktype.equals("所有书籍")) { if(!searchtype.equals("")&&!sea...
if(booktype.equals("所有书籍")) { if(!searchtype.equals("") && !searchkey.equals("")) { sql1 += " where "+searchtype+" like '%"+searchkey+"%'"; sql2 += " where "+searchtype+" like '%"+searchkey+"%'"; } } else { sql1 += " where type='"+booktype+"'"; sql2 += " where type='"+booktype+"'"; if(!searchtype.equals("") && !searchkey.equals("")) { sql1 += " and "+searchtype+" like '%"+searchkey+"%'"; sql2 += " and "+searchtype+" like '%"+searchkey+"%'"; } }这段代码是什么意思,希望可以说得详细点,谢谢!!
展开
展开全部
string SQL="select * from where "+searchtype+" like '%"+searchkey+"%' ";
你写的sql有问题,from后没有表名,
searchtype是你的表中的字段名, searchkey是你的查询条件,写完整了就像我下边写的sql一样:select * from Student where name like '%张%';(意思就是查询Student表中的name字段,只要name中的字段包含'张'字的都给查询出来)
if(booktype.equals("所有书籍")) :判断你的booktype是否为"所有书籍"
然后判断if(!searchtype.equals("") && !searchkey.equals("")) 是否为空,条件满足的情况下,就追加sql1,和sql2的条件
大概就是这个意思
你写的sql有问题,from后没有表名,
searchtype是你的表中的字段名, searchkey是你的查询条件,写完整了就像我下边写的sql一样:select * from Student where name like '%张%';(意思就是查询Student表中的name字段,只要name中的字段包含'张'字的都给查询出来)
if(booktype.equals("所有书籍")) :判断你的booktype是否为"所有书籍"
然后判断if(!searchtype.equals("") && !searchkey.equals("")) 是否为空,条件满足的情况下,就追加sql1,和sql2的条件
大概就是这个意思
展开全部
拼接SQL语句。返回的string类型的SQL语句为
SELECT * FROM table WHERE (变量‘searchtype’对应的列名)LIKE (变量‘searchkey’对应的值)
SELECT * FROM table WHERE (变量‘searchtype’对应的列名)LIKE (变量‘searchkey’对应的值)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
from后没有表名,这是个模糊查询,查找“searchtype”里包含“searchkey”的语句
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询