Retrieving a row, with data from key-value pair table in MySQL

前端 未结 3 735
[愿得一人]
[愿得一人] 2020-12-17 06:50

I have two tables, one called customer and one called customer_attributes.

The idea is that the customer table holds core customer data, an

3条回答
  •  情深已故
    2020-12-17 07:34

    The the "key" tests in with the LEFT OUTER JOIN predicates, as such:

    SELECT `customer`.*, `ca1`.`value1` AS `wedding_date`, `ca2`.`value1` AS `test` 
    FROM `customer` 
    LEFT JOIN `customer_attributes` AS `ca1` ON customer.customerID = ca1.customerID 
       AND (ca1.key1 = 'wedding_date') 
    LEFT JOIN `customer_attributes` AS `ca2` ON customer.customerID = ca2.customerID 
       AND (ca2.key1 = 'test')
    WHERE (customer.customerID = '58029') 
    

提交回复
热议问题