我已創建以下SQL查詢以從數據庫中導出訂單數據。使用INNER JOIN的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個時(包括列名)。
謝謝!
當它只應該是4行(5包括列名稱),因爲只有4個訂單。
非常感謝!
給了我與上面相同的問題。 16行,而不是4. – PHRoG
我在上面添加了一條新的FROM語句。 – Taryn
WOOHOO !! :D那樣做......非常感謝你! :) – PHRoG