gpt4 book ai didi

postgresql - Yii2:SQL 查询中的函数

转载 作者:行者123 更新时间:2023-11-29 14:30:28 25 4
gpt4 key购买 nike

我需要使用 Yii2 框架从名为 persons 的表中选择 21 岁或以下的人。

persons = (id, birthdate)

public static function findByBirthday($idper) {
$query = Persons::find()
->select([
Persons::tableName().".[[id]]",
Persons::tableName().".[[birthday]]"
])
->where([
'<=',
'select age(birthday, NOW())',
21
])

return $query->asArray()->all();
}

最佳答案

如果生日是有效的DATE类型

public static function findByBirthday($idper) {
$query = Persons::find()
->select([
Persons::tableName().".[[id]]",
Persons::tableName().".[[birthday]]"
])
->where([
'<=',
'EXTRACE(year from age(birthday))',
21
])

return $query->asArray()->all();
}

  ->where(   'EXTRACE(year from age(birthday))   <= 21')

关于postgresql - Yii2:SQL 查询中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52612746/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com