在 laravel 5 中,我使用下面的查询生成器
$user_social = DB::table('users')
->where('email','=',$credentials['email'])
->where('facebook', '!=', '')
->orWhere('google', '!=', '')
->get(['facebook','google']);
我得到了这个查询,由查询生成器生成
"select * from `users` where `email` = ? and `facebook` != ? or `google` != ?"
进行这样的查询需要进行哪些更改。
"select * from `users` where `email` = ? and (`facebook` != ? or `google` != ?")
谢谢你的帮助。