我有一个与这个非常相似的问题:
How to pivot a MySQL entity-attribute-value schema
or this one
Enumerating combination via SQL
我有两张桌子:
变化
ID | item_id | name
=================================
1 | 1 | color
2 | 1 | size
3 | 1 | material
4 | 1 | lenght
==================================
变异数据
ID | variation_id | value
=================================
1 | 1 | red
2 | 1 | white
3 | 1 | black
4 | 2 | s
5 | 2 | m
6 | 3 | cotton
7 | 4 | 100
==================================
名称和值是用户输入。
每个项目最多有 4 个变体,每个变体有 n 个值。
一些测试数据
CREATE TABLE variations ( id int PRIMARY KEY, item_id int, name varchar(50));
INSERT INTO variations (id, item_id, name)
VALUES (1, 1, 'color'),
(2, 1, 'size'),
(3, 1, 'material'),
(4, 1, 'length');
CREATE TABLE variation_data ( id int PRIMARY KEY, variation_id int, val varchar(50));
INSERT INTO variation_data (id, variation_id, value) VALUES
(1, 1, 'red'),
(2, 1, 'white'),
(3, 1, 'black'),
(4, 2, 's'),
(5, 2, 'm'),
(6, 3, 'cotton'),
(7, 4, '100');
期望的结果:
red S cotton 100
red M cotton 100
white S cotton 100
white M cotton 100
black S cotton 100
black M cotton 100
不幸的是,我无法解决这个问题。
我希望你能给我一个提示。
谢谢你的支持!