Hql 中实用查询时候 引号的使用
Posted struggle_beiJing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hql 中实用查询时候 引号的使用相关的知识,希望对你有一定的参考价值。
出错代码://List vlist = this.getHibernateTemplate().find("from androidCustomer ct where ct.token = "+token);
正确代码:List vlist= this.getHibernateTemplate().find("from AndroidCustomer a where a.token= ‘" + token+"‘");
这里的token为字符串,(当为字符串或者日期时候一定要有单引号,因为在数据库查询的时候也要用到单引号)
当为数字时候,可以不用单引号,因为PL/SQL中查询的时候及没有用到单引号,数字。千万注意
以上是关于Hql 中实用查询时候 引号的使用的主要内容,如果未能解决你的问题,请参考以下文章