hql语句怎么写

1. hql语句怎么写 String hql="from 类名 where app=6 AND pro_read_flag=FALSE";
Query query=session.createQuery(hql);
或者
String hql="from 类名 where app=? AND pro_read_flag=?";
Query query=session.createQuery(hql);
query.setParameter(0,6);
query.setParameter(1,false);
2. hql语句怎么写【hql语句怎么写】 String hql="from 类名 where app=6 AND pro_read_flag=FALSE";Query<类名> query=session.createQuery(hql);或者String hql="from 类名 where app=? AND pro_read_flag=?";Query<类名> query=session.createQuery(hql);query.setParameter(0,6);query.setParameter(1,false); 。
3. hql语句怎么写呢,本人学生,请各位帮我看看,谢谢 感觉你的表建的不规范 。
应该User表中有School的id 那样才会有一个学校对应多个user.. 个人看法..定义了保存,修改,删除,查找等方法的 类为 myDao则有:myDao dao=new myDao();School school=dao.findById(School.class,school_id);User user=school.getUsers();------------------------------myDao里的findById()方法定义如下:public Object findById(Class cla,Integer id) { Session session = HibernateSessionFactory.getSession(); Object o = session.get(cla, id); session.close(); return o; }我知道的就这些了062 希望能帮到你..呵呵.. 。