主题:select语句中变量如何使用?
我有一句嵌套在java中的sql语句,
String s="Niton";
ResultSet rs = stmt.executeQuery("select * from 表名 where name=s");
while (rs.next()) {
System.out.println(rs.getString(1));
}
为什么输不出内容呢,sql中如何使用变量来查询啊?急~~~
String s="Niton";
ResultSet rs = stmt.executeQuery("select * from 表名 where name=s");
while (rs.next()) {
System.out.println(rs.getString(1));
}
为什么输不出内容呢,sql中如何使用变量来查询啊?急~~~