当前位置:首页 > CMS教程 > 其它CMS > 列表

laravel 实现根据字段不同值做不同查询

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-16 17:18:42 浏览: 评论:0 

今天小编就为大家分享一篇laravel 实现根据字段不同值做不同查询,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。

在开发过程中我们经常遇到这种情况:

例如,一个信息表message,字段type 1.操作提醒 2.平台通知,表message_read记录当信息是平台通知时用户浏览状况

那么 当信息是平台通知时是针对的所有用户,我们想根据他是否浏览状态去在消息提醒里去显示他未读的消息

语句如下(laravel)

  1. public function index() 
  2.  { 
  3. //  监听sql语句 
  4. //  DB::listen(function($query) { 
  5. //   $bindings = $query->bindings; 
  6. //   $sql = $query->sql; 
  7. //   foreach ($bindings as $replace){ 
  8. //    $value = is_numeric($replace) ? $replace : "'".$replace."'"; 
  9. //    $sql = preg_replace('/\?/', $value, $sql, 1); 
  10. //   } 
  11. //   dd($sql); 
  12. //  }); 
  13.    $uid = 13;  
  14.    return MessageModel::where(function($queryuse($uid){ 
  15.     $query->where(['type'=>2,'status'=>1,])->whereNotIn('id',function($queryuse($uid){ 
  16.      $query->select('mid')->from('message_read')->where([['message.id','=',DB::raw('mid')],'uid'=>$uid]); 
  17.     }); 
  18.    })->orwhere(function($queryuse($uid){ 
  19.     $query->where(['type'=>1,'status'=>1,'is_read'=>2,'uid'=>$uid]); 
  20.    })->get(); 
  21.  } 

数据表格式

  1. CREATE TABLE `message` ( 
  2.  `id` int(11) unsigned NOT NULL AUTO_INCREMENT, 
  3.  `uid` int(11) DEFAULT NULL COMMENT '需要通知的用户id'
  4.  `title` varchar(255) NOT NULL COMMENT '标题'
  5.  `describe` varchar(255) DEFAULT NULL COMMENT '简介'
  6.  `type` tinyint(4) DEFAULT NULL COMMENT '通知类型 1.行为通知 2.平台通知'
  7.  `is_read` tinyint(4) DEFAULT NULL COMMENT '是否已读 1.已读 2.未读'
  8.  `status` tinyint(4) DEFAULT '1' COMMENT '1存在 2删除'
  9.  `created_at` int(11) DEFAULT NULL
  10.  `updated_at` int(11) DEFAULT NULL
  11.  PRIMARY KEY (`id`) 
  12. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='消息表'; 
  13. CREATE TABLE `message_read` ( 
  14.  `id` int(11) unsigned NOT NULL AUTO_INCREMENT, 
  15.  `uid` int(11) DEFAULT NULL COMMENT '用户id'
  16.  `mid` int(11) DEFAULT NULL COMMENT '消息id'
  17.  `created_at` int(11) DEFAULT NULL
  18.  `updated_at` int(11) DEFAULT NULL
  19.  PRIMARY KEY (`id`) 
  20. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='平台消息通知阅读记录表';

Tags: laravel字段查询

分享到: