Suppliers table
id | name
1 | supplier1
2 | supplier2
Products table
id | name
1 | product1
2 | product2
Attributes table
id | name
1 | width
2 | heigh
3 | weight
4 | volume
supplier_product table
supplier_id | product_id | price
1 | 1 | 1000
1 | 2 | 1500
2 | 1 | 1100
attribute_product
supplier_id | product_id | attribute_id | value
1 | 1 | 1 | 10
1 | 1 | 2 | 15
1 | 1 | 3 | 20
1 | 2 | 1 | 11
1 | 2 | 2 | 16
2 | 1 | 1 | 10
2 | 1 | 2 | 13
Как получить атрибут для каждого товара для каждого поставщика?