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

Laravelの流暢なクエリビルダーで複数のテーブルから選択

    テストされていませんが、ここから始めます

    return DB::table('phpbb_topics')
        ->join('phpbb_posts', 'phpbb_topics.topic_first_post_id', '=', 'phpbb_posts.post_id')
        ->join('phpbb_users', 'phpbb_topics.topic_poster', '=', 'phpbb_users.user_id')
        ->order_by('topic_time', 'desc')
        ->take(10)
        ->get(array(
            'post_text',
            'bbcode_uid',
            'username',
            'forum_id',
            'topic_title',
            'topic_time',
            'topic_id',
            'topic_poster'
        ));
    


    1. MySQLを使用して3つのテーブルを結合する

    2. MicrosoftSQLシーケンスとの数値の競合を回避する

    3. データベースメールチュートリアル

    4. MySQL WEEK()のどのモードがISO8601に準拠しているか