求sql模糊查询语句

sqlserver数据库publicArrayListselectStudent(Stringname){ArrayListlist=newArrayList();try... sql server数据库
public ArrayList selectStudent(String name){
ArrayList list=new ArrayList();
try{
db.getConnection();
ResultSet rs=db.Query("select * from Student where username like '%%'");
while(rs.next()){
list.add(new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
}
}catch(Exception e){
e.printStackTrace();
}finally{
db.close();
}
return list;
}

这个方法带一个参数 不知道怎么把这个参数的值传到‘%%’中间 。。。
晕那个是值耶
按照你的那样 不成了查询name了。。呵呵
展开
 我来答
myworld2551
2009-06-01 · TA获得超过217个赞
知道小有建树答主
回答量:214
采纳率:75%
帮助的人:133万
展开全部
//java
public ArrayList selectStudent(String name){
ArrayList list=new ArrayList();
try{
db.getConnection();
ResultSet rs=db.Query("select * from Student where username like '%"+name+"%'");
while(rs.next()){
list.add(new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
}
}catch(Exception e){
e.printStackTrace();
}finally{
db.close();
}
return list;
}
KarasCanvas
2009-06-01 · TA获得超过2865个赞
知道大有可为答主
回答量:3619
采纳率:0%
帮助的人:3273万
展开全部
db.Query(@"select * from Student where username like '%"+name+"%'");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lcht1986
2009-06-01 · 超过21用户采纳过TA的回答
知道答主
回答量:109
采纳率:0%
帮助的人:65.5万
展开全部
是c#么
string strCmd="select * from Student where username like '%"+name+"%'";

ResultSet rs=db.Query(strCmd);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qman1989
2009-06-01 · 超过23用户采纳过TA的回答
知道答主
回答量:173
采纳率:0%
帮助的人:94.1万
展开全部
嘿嘿,抱歉
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式