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

列を行に転置する

    UNIONALL を使用できます このために

    select 'one' as label,  curdate() as val
    UNION ALL
    select 'two' as label,  date_sub(curdate(), interval 15 day) as val
    UNION ALL
    select 'three' as label,  date_sub(curdate(), interval 30 day)  as val
    UNION ALL
    select 'four' as label,  date_sub(curdate(), interval 45 day) as val
    UNION ALL
    select 'five' as label,  date_sub(curdate(), interval 60 day) as val
    UNION ALL
    select 'six' as label,  date_sub(curdate(), interval 75 day)  as val
    UNION ALL
    select 'seven' as label,  date_sub(curdate(), interval 90 day) as val
    



    1. codeigniterを使用して複数の画像をアップロードする方法

    2. postgresで重複する配列値を排除する

    3. mysqlストアドプロシージャ、存在するかどうかを確認するためのクエリ

    4. MySQLのプロセスリストの表示に完全なSQLクエリを表示する