sql >> データベース >  >> RDS >> Mysql

サブクエリでLaravelクエリビルダーメソッドwhereIn()を使用する

    これを参照してください

     $courseId = 1;
    
     $data = DB::table('student')->whereIn('id',function($query) use (courseId){
        $query->select('student_id')
                ->from('student_course')->where('course_id', '=',$courseId);
    })->get();
    


    1. クライアントサイドのプリペアドステートメントとは何ですか?

    2. MySQL、MariaDB、MongoDB、PostgreSQLシステムを監視するためのカスタムグラフ-ClusterControlのヒントとコツ

    3. MySQLトリガーのデバッグ

    4. PHP mySQL-数値インデックスを持つ連想配列を返すことができますか?