Jsp中的SQL语句写法,高手进哦~~
各位好,我在jsp文件中定义了一个String的Sql语句,我想模糊查询关键字,如下:Stringsql="select*fromrecordwhere('"+choic...
各位好,我在jsp文件中定义了一个String的Sql语句,我想模糊查询关键字,如下:
String sql = "select * from record where ('"+choice+"' like '"+%gjz%+"') and date >= '"+sdate+"' and date <='"+edate+"' order by date ";
ResultSet rs=stmt.executeQuery(sql);......
但是报语法错? '"+%gjz%+"' 这个写法错了吗?请问哪里错了???
PS:choice是列名 ,gjz是关键字,sdate是起始时间,edate是结束时间。
choice也是传递的参数哈。就是列名和关键字不确定哦。所以写成上面的形式 展开
String sql = "select * from record where ('"+choice+"' like '"+%gjz%+"') and date >= '"+sdate+"' and date <='"+edate+"' order by date ";
ResultSet rs=stmt.executeQuery(sql);......
但是报语法错? '"+%gjz%+"' 这个写法错了吗?请问哪里错了???
PS:choice是列名 ,gjz是关键字,sdate是起始时间,edate是结束时间。
choice也是传递的参数哈。就是列名和关键字不确定哦。所以写成上面的形式 展开
4个回答
展开全部
String sql = "select * from record where choice like '"+%gjz%+"' and date >= '"+sdate+"' and date <='"+edate+"' order by date ";
ResultSet rs=stmt.executeQuery(sql);
'"+%gjz%+"'没有错
ResultSet rs=stmt.executeQuery(sql);
'"+%gjz%+"'没有错
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
希奕际
2024-04-10 广告
2024-04-10 广告
剑桥文理与剑桥艺术学校中国 基于剑桥文理学校优质的海外校本部资源和课程方向,现开设四类课程:艺术与设计课程、音乐与戏剧课程、英国A-Level课程、波士顿文理中学美高与AP课程。荣获2021胡润百学中国国际学校艺术类领军学校奖,2022胡润...
点击进入详情页
本回答由希奕际提供
展开全部
String sql = "select * from record where ('"+choice+"' like '%"+gjz+"%') and date >= '"+sdate+"' and date <='"+edate+"' order by date ";
百分号的位置的问题吧 另外choice是不固定的列名吗,要是固定的不用写成参数吧
百分号的位置的问题吧 另外choice是不固定的列名吗,要是固定的不用写成参数吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
"select * from record where ('"+choice+"' like '"+%gjz%+"') and date
改成
"select * from record where ("+choice+" like '%"+gjz+"%') and date
这样就行了
改成
"select * from record where ("+choice+" like '%"+gjz+"%') and date
这样就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String sql = "select * from record where choice like '"+%gjz%+"' and date >= '"+sdate+"' and date <='"+edate+"' order by date ";
我猜你那个choice不是传的参吧?
我猜你那个choice不是传的参吧?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询