gpt4 book ai didi

mysql - Laravel 迁移与关系

转载 作者:行者123 更新时间:2023-11-29 18:02:27 26 4
gpt4 key购买 nike

我是 Laravel 新手,所以我不知道这个问题到底是什么。所以我会详细描述它。首先我有2个表文章评论,关系为1-1,这意味着一篇文章只能有1条评论。代码是:

$article = Article::with('comments')

结果是

enter image description here

下面是我得到的相关评论的属性:

enter image description here

但现在,我希望构建器仅选择文章内容长度>其评论内容长度的文章。在MySQL语句中,是

"Select from articles a where length(a.content) > (Select length(c.content) from comments c where c.article_id = a.id)

我尝试过rawjoin并且它有效。但我想知道我可以对“with”关系做同样的事情吗?我怎样才能做到这一点?

最佳答案

试试这个

$article = Article::where(DB::raw('length(content)','>' ,DB::raw('Select length(content) from comments where article_id = id'))->with(['comments'])->get();

关于mysql - Laravel 迁移与关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48219017/

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