如何在我的数据库中获取具有相同名称的数据但使用php创建不同的数据?

时间:2017-01-10 09:43:35

标签: php

我尝试使用条件为if same creator and same account name then print的php检索我桌面上的数据。我使用的是这段代码:

$groups = \App\Group::where('created_by', '=', $grp->created_by)->get();
  if($groups->count() > 0){
    $group = \App\Group::where('account_name', 'LIKE', $groups[0]->account_name)->groupBy('name')->get();
  }

但它只显示具有相同account_name的数据,即使它们具有不同的创建者created_by

1 个答案:

答案 0 :(得分:0)

我想删除这个问题,因为我自己解决了这个问题,但我只是发布了我的解决方案。有人可能需要它:

$group = \App\Group::where('account_name', '=', $grp->account_name)->where('created_by', 'LIKE', $grp->created_by)->groupBy('name')->get();