How to select Column value as Column name with conditions in SQL table

后端 未结 3 1015
小鲜肉
小鲜肉 2020-12-20 01:21

I\'m new to SQL. I have a table \'Customers\' and it looks like this.

\"enter

3条回答
  •  执笔经年
    2020-12-20 01:23

    One way to go about it is to use conditional aggregation

    SELECT name,
           MAX(CASE WHEN field = 'Gender' THEN value END) gender,
           MAX(CASE WHEN field = 'Age' THEN value END) age
      FROM customers
     GROUP BY name
    

    The other way (if you're interested only in these two columns) would be

    SELECT c1.name, c1.value gender, c2.value age
      FROM customers c1 JOIN customers c2
        ON c1.name = c2.name
       AND c1.field = 'Gender'
       AND c2.field = 'Age';
    

    Assumption is that both Gender and Age exist for each Name. It it's not the case then use an OUTER JOIN instead of an INNER JOIN like so

    SELECT n.name, c1.value gender, c2.value age
      FROM
    (
      SELECT DISTINCT name
        FROM customers
    ) n LEFT JOIN customers c1
        ON n.name = c1.name AND c1.field = 'Gender' 
        LEFT JOIN customers c2
        ON n.name = c2.name AND c2.field = 'Age';
    

    Output:

    |   NAME | GENDER | AGE |
    |--------|--------|-----|
    | Angela | Female |  28 |
    |  Davis |   Male |  30 |
    

    Here is SQLFiddle demo

提交回复
热议问题