JFinal中的数据查询
目前用JFinal开发一个小项目,需要用到数据查询,现在有两张表,一张用户表,一张好友表,通过userid关联两张表,好友表里面的主要是用户id,好友id,但是显示的时候,不可能显示id,而是需要显示用户名和好友名,但是JFinal提供了方便的分页方法,所以之前的页面都用了分页,这个页面不知道要不要用。用分页,那么hql代码只能写一行,如何通过一次sql查询,通过用户id和好友id获得用户名和好友名?目前代码如下,不知道怎么获取好友名。
public class FriendController extends BaseController {
public void index() {
setAttr("userid",getPara("userid"));
if(getPara("userid")!=null && !getPara("userid").equals("")) {
setAttr("friendlist", Vip_pointlog.dao.paginate(getParaToInt("page", 1), 10, "select f.id,c.login_name,friend_name", "from friend f,vip_card c where f.user_id = c.id and r.user_id='" +getPara("userid")+"' order by id asc"));
} else {
setAttr("friendlist", Vip_pointlog.dao.paginate(getParaToInt("page", 1), 10, "select f.id,c.login_name,friend_name", "from friend f,vip_card c where f.user_id = c.id order by id asc"));
}
render("blog.html");
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假定有 user 表,friend 表:user(id, name),firend(userId, friendId)