Najprostszym sposobem byłoby skorzystanie z funkcji grupowej GROUP_CONCAT tutaj..
select
ordered_item.id as `Id`,
ordered_item.Item_Name as `ItemName`,
GROUP_CONCAT(Ordered_Options.Value) as `Options`
from
ordered_item,
ordered_options
where
ordered_item.id=ordered_options.ordered_item_id
group by
ordered_item.id
Co dałoby:
Id ItemName Options
1 Pizza Pepperoni,Extra Cheese
2 Stromboli Extra Cheese
W ten sposób możesz mieć tyle opcji, ile chcesz, bez konieczności modyfikowania zapytania.
Ach, jeśli zauważysz, że wyniki są przycinane, możesz zwiększyć limit rozmiaru GROUP_CONCAT w ten sposób:
SET SESSION group_concat_max_len = 8192;