Home > Database > Mysql Tutorial > body text

mysql 返回多个函数计算结果

WBOY
Release: 2016-06-07 15:19:38
Original
1466 people have browsed it

我想得记录的sql 语句,以前没写过, 查询表中的某用户的总记录数和即将到期的信息条数 ,显然这是两个函数 的计算结果,在学校的时候贪玩,写得少 ,愧对老师

 我想值得记录的sql 语句,以前没写过,

查询表中的某用户的总记录数和即将到期的信息条数 ,显然这是两个函数 的计算结果,在学校的时候贪玩,写得少 ,愧对老师啊。

虽然查的是数据库表,返回的计算结果,不是字段,且是两个值,故用集合接收。

code :public List getVipCount(int yyryid) {
  String sql = "SELECT count(id)   FROM vip  WHERE TO_DAYS(NOW()) - TO_DAYS(createtime )     return (List) getSession().createSQLQuery(sql).list();
  }

 

受 Hibernate.addScalar("",type)的影响,也想用此方法,但是从数据库的执行结果知道,给两个函数值赋别名,永远只会显示一个,也就是说第二函数的别名是无法读取的。

故果断返回list(),何必返回两个指定的变量值?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!