jdbc中sql语句的疑惑
(1)用jdbc连接数据库之后。写一条语句发送给数据库查询,代码是这样的String sql="select * from news where id="+id;
ResultSet rs=conn.executeQuery(sql);
为什么不是:String sql="select * from news where id=id;"id要放到引号外面去呢?
(2)同上:ResultSet rsTmp=conn.executeQuery("select count(id) as countid from news");
news表里面的列只有id、title、content、author、keywords、times。并没有countid,查询的功能跟具体结果是什么?
谢谢各位用心回答我的疑问。不胜感激。。。。