"Licencies"
とstructure_id
からの結果を返すクエリを、4
とは別のものにしました。すべてがwhere節でうまくいくのですが、別の条件がorWhereにあった場合は、別のものから結果が表示されますstructure_ids ...
誰にでも正しい構造IDと2つのwhere節を持つ正しいクエリを知っていますか?おかげで事前にたくさん雄弁な質問で間違ったIDを取得する
私のクエリ:
ここ$licencies = Licencies::where('structure_id' , '4')->where('statut_licence_id' , '2')->orWhere('valid_licence_id' , '1')->get();
私はコード実行の問合せ:
select * from `licencies` where `structure_id` = '4' and `statut_licence_id` = '2' or `valid_licence_id` = '1'
をが、結果には私もexempleためstructure_id = 5からlicencies取得
これは現在動作しています!本当にありがとう !! –