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

nullの結果をgroup_concatに含める

    SELECT id,IFNULL(samples,'NULL') sample FROM 
    (
        SELECT
            AA.id,
            GROUP_CONCAT(DISTINCT BB.sample) samples
        FROM
            profile_answers AA LEFT JOIN educations BB
            ON AA.id = BB.profile_answers_id
        GROUP BY AA.id
    ) A;
    


    1. SQLServerでのデータベースオブジェクトとテーブルデータの検索

    2. 奇妙で迷惑なエラー:未定義の関数mysql_query()の呼び出し

    3. 条件付きロジックを使用したMysqlselect

    4. Debian9にMariaDBをインストールして保護する方法