I have two tables.
Order Order_Items
===== ===========
order_id order_item_id
customer_id order_id
item_id
qty
price
Can a view be made which returns all items for an order in one row? Only up to 5 items maybe
Ex.
order_id customer_id item_id_1 qty_1 price_1 item_id_2 qty_2 price_2 ....
====================================================================
7845 235 123 1 25.00 NULL NULL NULL
7846 784 346 8 9.99 123 1 25.00