gpt4 book ai didi

php - Laravel wherebetween 不接受负数

转载 作者:行者123 更新时间:2023-11-29 06:44:55 24 4
gpt4 key购买 nike

无论如何,是否可以使用 laravel 在数据库中找到一系列负数?上面的语句没有正确执行我的查询。它一直返回 null。

  $userprofile = $userprofile->whereBetween('unix_birthyears', array(-100,-50))->get();

感谢您的帮助。

最佳答案

请注意,如果您的数据库字段不是 int,则查询值将被视为字符串,反之亦然,因此这可能需要测试。

你可以试试:

->where(DB::raw('`unix_birthyears` BETWEEN -100 AND -50'),true)->get();

关于php - Laravel wherebetween 不接受负数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19192612/

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