我想要单个查询中的数据和总数:
SELECT id, order_name, order_ownurl, order_category, order_id
FROM `order_details`
WHERE ordered_name='nikon d3200'
ORDER BY ordered_price asc
和
SELECT count(distinct order_id)
FROM `order_details`
WHERE ordered_name='nikon d3200'