Я создал следующий запрос SQL для экспорта данных заказа из базы данных.
SELECT orders.orders_id as uuid,
orders.customers_id as order__customer_id,
orders.customers_name as order__customer_name,
orders.customers_company as order__customer_company,
orders.customers_street_address as order__customer_street_address,
orders.customers_suburb as order__customer_suburb,
orders.customers_city as order__customer_city,
orders.customers_postcode as order__customer_postcode,
orders.customers_state as order__customer_state,
orders.customers_country as order__customer_country,
orders.customers_telephone as order__customer_telephone,
orders.customers_email_address as order__customer_email_address,
orders.delivery_name as order__delivery_name,
orders.delivery_company as order__delivery_company,
orders.delivery_street_address as order__delivery_street_address,
orders.delivery_suburb as order__delivery_suburb,
orders.delivery_city as order__delivery_city,
orders.delivery_postcode as order__delivery_postcode,
orders.delivery_state as order__delivery_state,
orders.delivery_country as order__delivery_country,
orders.billing_name as order__billing_name,
orders.billing_company as order__billing_company,
orders.billing_street_address as order__billing_street_address,
orders.billing_suburb as order__billing_suburb,
orders.billing_city as order__billing_city,
orders.billing_postcode as order__billing_postcode,
orders.billing_state as order__billing_state,
orders.billing_country as order__billing_country,
orders.payment_method as order__payment_method,
orders.last_modified as order__last_modified,
orders.date_purchased as order__date_purchased,
orders.orders_status as order__order_status,
orders_status.orders_status_name as order__order_status_name,
orders.orders_date_finished as order__date_finished,
orders.currency as order__currency,
orders.currency_value as order__currency_value,
ot1.orders_id,
value AS ot_subtotal,
ot2.ot_shipping,
ot3.ot_total
FROM orders, orders_status, orders_total as ot1
INNER JOIN ( SELECT orders_id, value AS ot_shipping FROM orders_total WHERE class='ot_shipping' ) AS ot2 ON ot1.orders_id=ot2.orders_id AND ot1.class='ot_subtotal'
INNER JOIN ( SELECT orders_id, value AS ot_total FROM orders_total WHERE class='ot_total' ) AS ot3 ON ot1.orders_id=ot3.orders_id AND ot1.class='ot_subtotal'
WHERE ot1.orders_id = ot2.orders_id and orders.orders_status = orders_status.orders_status_id;
Работает фантастически, за исключением того, что создает 4 строки для каждой записи. В настоящее время существует 4 заказа, поэтому существует 16 строк (17, включая имена столбцов), тогда как их должно быть только 4 (5, включая имена столбцов).
Спасибо!
Когда должно быть только 4 строки (5, включая имена столбцов), поскольку существует только 4 порядка.
Очень ценится!