Grails GORM:SELECT AS

时间:2015-03-18 19:22:03

标签: grails gorm

我试图通过GORM获取今天出生的所有用户,但我未能在Grails中编写此查询:

SELECT
DAY(dateOfBirth) AS 'day',
MONTH(dateOfBirth) AS 'month'
FROM Users
WHERE day = '...' AND month = '...';

...将替换为今天的价值。

最小User域类

class User {

  Date dateOfBirth

  ...

}

最小UserService班级

@Transactional
class UserService {

  def getTodayBirthdays() {

    def bornTodayQuery = User.where{
      /* I'm thinking here I must
       * select the DAY and MONTH from the DB
       * and compare it with the today ones.
       */
    }       

    User usersBornToday = bornTodayQuery.findAll()      

    usersBornToday      

  }

}

任何想法如何使用GORM执行别名(SELECT字段AS别名)?

我正在使用:

  • Grails 2.4.4

谢谢!

2 个答案:

答案 0 :(得分:1)

您可以在服务中使用 where query

@Transactional(readOnly = true)
def listBirthday(int _month, int _day) {
  // Calendar.JANUARY equals to zero!
  def m = _month + 1
  // Run a where query on the users
  User.where {
    month(dateOfBirth) == m && day(dateOfBirth) == _day
  }
}

@Transactional(readOnly = true)
def listBirthdayToday() {
  def cal = Calendar.getInstance()
  listBirthday(cal.get(cal.MONTH), cal.get(cal.DAY_OF_MONTH))
}

除了monthday还有其他一些功能,here是文档(查找“其他功能”)

答案 1 :(得分:0)

<块引用>

任何想法如何使用 GORM 做别名(SELECT 字段 AS 别名)?

(SELECT field AS _alias)

使用 grails-2.5.6 将下划线 (_) 作为前缀作为别名对我有用

我没有在文档中找到它,而是使用跟踪和错误方法。