I want to retrieve all details related to an order such as order_id, products related to that order and product attributes such as size, price and color in magento database. This is the query I have currently used to retrieve details about the order. but I am unable to find the tables that have details about the product attributes.
SELECT
items.order_id AS order_id,
concat(address.firstname,' ',address.lastname) as name,
address.email AS Email,
items.created_at AS Date,
orders.base_subtotal as sub_order_total,
orders.base_grand_total as order_total,
address.city as order_city,
address.telephone as phone_number,
address.region as order_region,
items.row_total_incl_tax as product_price,
items.name as product_name,
items.description as product_description
FROM
sales_flat_order_address AS address
JOIN
sales_flat_order AS orders
ON orders.entity_id = address.parent_id
JOIN sales_flat_order_item AS items
ON items.order_id = orders.entity_id
WHERE orders.status = 'complete'
group by 1,2,3,4,5,6,7,8,9,10,11,12
order by 1;
2
Answers
Please use following query. This may help you –