SQL Monitor Report

trace_id query_sql RETURN_ROWS REQUEST_TIME REQUEST_END_TIME ELAPSED_TIME TENANT_NAME user_name db_name plan_id tenant_id mysql_version svr_ip svr_port
YB420A01FA9D-000626C2C73BF28D-0-0 # 销售统计
SELECT t.in_user_id, t.in_user_name, concat(t.in_user_id) AS sort_value, sum(CASE WHEN t.data_mark = 'A' THEN t.counts ELSE 0 END) AS counts, sum(CASE WHEN t.data_mark = 'A' THEN t.price ELSE 0 END) AS price, sum(CASE WHEN t.data_mark = 'A' THEN t.sell_price ELSE 0 END) AS sell_price, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_price ELSE 0 END) AS avg_price, sum(CASE WHEN t.data_mark = 'A' THEN t.gift_price ELSE 0 END) AS gift_price, sum(CASE WHEN t.data_mark = 'A' THEN t.discount_price ELSE 0 END) AS discount_price, sum(CASE WHEN t.data_mark = 'A' THEN t.point_price ELSE 0 END) AS point_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_price ELSE 0 END) AS statistics_price, sum(CASE WHEN t.data_mark = 'A' THEN t.self_modify_price ELSE 0 END) AS self_modify_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_in_price ELSE 0 END) AS statistics_in_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_gross_profit ELSE 0 END) AS statistics_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.in_price ELSE 0 END) AS in_price, sum(CASE WHEN t.data_mark = 'A' THEN t.gross_profit ELSE 0 END) AS gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_statistics_gross_profit ELSE 0 END) AS avg_statistics_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.examine_price ELSE 0 END) AS examine_price, sum(CASE WHEN t.data_mark = 'A' THEN t.examine_gross_profit ELSE 0 END) AS examine_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_examine_gross_profit ELSE 0 END) AS avg_examine_gross_profit, sum(CASE WHEN t.data_mark = 'B' THEN t.counts ELSE 0 END) AS counts_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.price ELSE 0 END) AS price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.sell_price ELSE 0 END) AS sell_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_price ELSE 0 END) AS avg_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.gift_price ELSE 0 END) AS gift_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.discount_price ELSE 0 END) AS discount_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.point_price ELSE 0 END) AS point_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_price ELSE 0 END) AS statistics_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.self_modify_price ELSE 0 END) AS self_modify_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_in_price ELSE 0 END) AS statistics_in_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_gross_profit ELSE 0 END) AS statistics_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.in_price ELSE 0 END) AS in_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.gross_profit ELSE 0 END) AS gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_statistics_gross_profit ELSE 0 END) AS avg_statistics_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.examine_price ELSE 0 END) AS examine_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.examine_gross_profit ELSE 0 END) AS examine_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_examine_gross_profit ELSE 0 END) AS avg_examine_gross_profit_chain
FROM (SELECT *, 'A' AS data_mark
FROM (SELECT t.in_user_id, t.in_user_name, IFNULL(sum(t.count), 0) counts, IFNULL(sum(t.price), 0) price, IFNULL(sum(t.sell_price), 0) sell_price, ROUND(sum(t.price) / sum(t.count), 2) avg_price, IFNULL(SUM(t.gift_price), 0) gift_price, IFNULL(sum(t.discount_price), 0) discount_price, IFNULL(sum(t.point_price), 0) point_price, IFNULL(sum(t.self_modify_price), 0) self_modify_price, sum(t.actualPaymentPrice) statistics_price, sum(IFNULL(t.statistics_in_price, 0)) statistics_in_price, sum(t.statistics_gross_profit) statistics_gross_profit, sum(IFNULL(t.in_price, 0)) in_price, sum(t.gross_profit) gross_profit, ROUND(sum(t.statistics_gross_profit) / sum(t.count), 2) avg_statistics_gross_profit, SUM(IFNULL(t.examine_price, 0)) examine_price, SUM(t.examine_gross_profit) examine_gross_profit, ROUND(sum(t.examine_gross_profit) / sum(t.count), 2) avg_examine_gross_profit
FROM (WITH adjustPriceTemp AS (SELECT t1.mkc_id AS mkc_id, sum(if(t17.type = 3, t16.adjust_price, 0.00)) AS self_modify_price, sum(if(t17.type = 2
AND t16.is_adjust_after_trade = false, t16.adjust_price, 0.00)) AS before_in_source_modify_price, sum(if(t17.type = 2
AND t16.is_adjust_after_trade = true, t16.adjust_price, 0.00)) AS after_in_source_modify_price, sum(if(t17.type = 2, t16.adjust_price, 0.00)) AS in_source_modify_price
FROM t_product_stock_detail t1
LEFT JOIN t_order_detail t2
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_return_detail t6
ON t1.mkc_id = t6.mkc_id
LEFT JOIN t_return t7
ON t6.return_id = t7.id
AND t7.is_delete = 0
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
LEFT JOIN t_product_adjust_price_detail t16
ON t16.mkc_id = t1.mkc_id
LEFT JOIN t_product_adjust_price t17
ON t17.id = t16.adjust_price_id
AND t17.status = 3
WHERE t3.order_state = 9
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t6.is_delete = 0
AND t7.is_delete = 0
AND t16.is_delete = 0
AND t2.is_mobile = TRUE
AND t17.type IN (2, 3)
AND t7.check2_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t1.mkc_id)
SELECT t2.id AS orderDetailId, 0 - (IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0)) statistics_in_price, 0 - t1.inprice in_price, 0 - t6.return_price + IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0) statistics_gross_profit, 0 - t6.return_price + IFNULL(t1.inprice, 0) gross_profit, 0 - t1.examine_price examine_price, 0 - (t6.return_price - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei i_mei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '-1' AS count, 0 - t2.price price, 0 - t2.price price2, 0 - t2.sell_price sell_price, 0 - t2.gift_price gift_price, 0 - t2.discount_price discount_price, 0 - t2.point_price point_price, 0 - t6.return_price statistics_price, 0 - t6.return_price actualPaymentPrice, 0 - IFNULL(t16.self_modify_price, 0.00) self_modify_price, 0 - IFNULL(t16.after_in_source_modify_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid AS product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) AS customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1
AND t2.product_stock_type != 3)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_return_detail t6
ON t1.mkc_id = t6.mkc_id
AND t6.product_stock_type != 3
AND t6.is_delete = 0
LEFT JOIN t_return t7
ON t6.return_id = t7.id
AND t7.is_delete = 0
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
LEFT JOIN adjustPriceTemp t16
ON t16.mkc_id = t1.mkc_id
WHERE t3.order_state = 9
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t7.return_type NOT IN (7, 8)
AND t7.is_delete = 0
AND t2.is_mobile = TRUE
AND t2.product_stock_type != 3
AND t7.check2_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT t2.id AS orderDetailId, t1.statistics_price statistics_in_price, t1.inprice in_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.statistics_price, 0)) statistics_gross_profit, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.inprice, 0)) gross_profit, t1.examine_price examine_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 i_mei2, t1.imei_3 i_mei3, t1.imei_4 i_mei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '1' AS count, t2.price price, t2.price price2, t2.sell_price sell_price, t2.gift_price gift_price, t2.discount_price discount_price, t2.point_price point_price, t2.statictisc_price statistics_price, (t2.price - t2.discount_price - t2.point_price) actualPaymentPrice, t1.modify_price self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1
AND t2.product_stock_type != 3)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t2.is_mobile = TRUE
AND t2.product_stock_type != 3
AND t3.order_complete_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT t2.id AS orderDetailId, 0 - t16.adjust_price statistics_in_price, 0 in_price, t16.adjust_price statistics_gross_profit, 0 gross_profit, 0 examine_price, 0 examine_gross_profit, t2.is_mobile is_mobile, t17.handle_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成价保' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, 0 AS count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 statistics_price, 0 actualPaymentPrice, if(t17.type = 3, t16.adjust_price, 0.00) self_modify_price, if(t17.type = 2, t16.adjust_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1
AND t2.product_stock_type != 3)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
LEFT JOIN t_product_adjust_price_detail t16
ON t16.mkc_id = t1.mkc_id
LEFT JOIN t_product_adjust_price t17
ON t17.id = t16.adjust_price_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t2.is_mobile = TRUE
AND t2.product_stock_type != 3
AND t17.status = 3
AND t17.type IN (2, 3)
AND t16.is_adjust_after_trade = true
AND t17.handle_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT max(t10.id) AS orderDetailId, SUM(t10.statistics_in_price) statistics_in_price, SUM(t10.in_price) in_price, SUM(t10.statistics_gross_profit) statistics_gross_profit, sum(t10.gross_profit) gross_profit, SUM(t10.examine_price) examine_price, SUM(t10.examine_gross_profit) examine_gross_profit, t10.is_mobile is_mobile, t10.date date, t10.order_complete_time, t10.area_id area_id, t10.accountingBodyId, t10.accountingBodyName, t10.order_id order_id, t10.business_type business_type, t10.order_type order_type, t10.user_id user_id, t10.ppid sku_id, t10.detail_type, t10.insource_id insource_id, t10.inSourceId2 inSourceId2, t10.i_mei_or_barcode i_mei, t10.imei2 imei2, t10.imei3 imei3, t10.imei4 imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, SUM(t10.count) count, SUM(t10.price) price, SUM(t10.price) price2, SUM(t10.sell_price) sell_price, SUM(t10.gift_price) gift_price, SUM(t10.discount_price) discount_price, SUM(t10.point_price) point_price, SUM(t10.statistics_price) statistics_price, SUM(t10.actualPaymentPrice) actualPaymentPrice, SUM(t10.self_modify_price) self_modify_price, 0 in_source_modify_price, t10.in_user_id in_user_id, t10.in_user_name in_user_name, t10.product_color product_color, t10.product_id product_id, t10.cid cid, t10.brand_id brand_id, t10.product_name product_name, t10.customer_type customer_type, t10.order_customer_type order_customer_type, t10.customer_name customer_name, t10.customer_phone customer_phone, t10.contract_name contract_name, t10.contract_mobile contract_mobile, t10.trader_name trader_name, t10.comment comment, t10.product_comment product_comment, t10.label_id label_id, t10.label_name label_name, t10.detail_parent_id, t10.serial_number_mark_name serial_number_mark_name, t10.serial_number_mark_color serial_number_mark_color, t10.serial_number_mark serial_number_mark, t10.aux_sale_man_names, t10.sample_product
FROM (SELECT t2.id, SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, if(t2.virtual_product = 0, sum(t1.counts), t2.counts) count, t2.price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) price, t2.sell_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) sell_price, t2.gift_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) gift_price, t2.discount_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) discount_price, t2.point_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) point_price, t2.statictisc_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) statistics_price, (t2.price - t2.discount_price - t2.point_price) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) actualPaymentPrice, SUM(IFNULL(t1.modify_price * t1.counts, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_order_detail_extend vpcc
ON t2.id = vpcc.id
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t2.is_mobile = FALSE
AND t3.order_complete_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t3.trader_name, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name
UNION ALL
SELECT t2.id, 0 - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, 0 - SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, 0 - SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, 0 - count(t2.id) * t6.return_count count, 0 - (t2.price * count(t2.id)) * t6.return_count price, 0 - (t2.sell_price * count(t2.id)) * t6.return_count sell_price, 0 - (t2.gift_price * count(t2.id)) * t6.return_count gift_price, 0 - (t2.discount_price * count(t2.id)) * t6.return_count discount_price, 0 - (t2.point_price * count(t2.id)) * t6.return_count point_price, 0 - (t6.return_price * count(t2.id)) * t6.return_count actualPaymentPrice, 0 - (t6.return_price * count(t2.id)) * t6.return_count statistics_price, 0 - SUM(IFNULL(t1.modify_price, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN (SELECT order_detail_id, avg(return_price) return_price, is_delete, return_id, return_count
FROM t_return_detail
WHERE is_delete = 0
AND order_detail_type = 1 GROUP BY order_detail_id, return_id, is_delete, return_count) t6
ON t2.id = t6.order_detail_id
LEFT JOIN t_return t7
ON t6.return_id = t7.id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_order_detail_extend vpcc
ON t2.id = vpcc.id
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state = 9
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t6.is_delete = 0
AND t7.is_delete = 0
AND t7.return_type NOT IN (7, 8)
AND t2.is_mobile = FALSE
AND t7.check2_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t6.return_price, t6.return_count, t7.check2_time, t7.check2_user_name, t7.comment, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name) t10
WHERE is_mobile IS NOT NULL
AND area_id IS NOT NULL
AND order_id IS NOT NULL GROUP BY t10.business_type, t10.is_mobile, t10.date, t10.order_complete_time, t10.area_id, t10.order_id, t10.order_type, t10.user_id, t10.ppid, t10.insource_id, t10.i_mei_or_barcode, t10.in_user_id, t10.in_user_name, t10.product_color, t10.product_id, t10.cid, t10.brand_id, t10.product_name, t10.customer_type, t10.order_customer_type, t10.customer_name, t10.customer_phone, t10.contract_name, t10.contract_mobile, t10.trader_name, t10.inSourceId2, t10.detail_type, t10.comment, t10.product_comment, t10.label_id, t10.label_name, t10.detail_parent_id, t10.imei2, t10.imei3, t10.imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, t10.serial_number_mark_name, t10.serial_number_mark_color, t10.serial_number_mark, t10.aux_sale_man_names, t10.sample_product, t10.accountingBodyId, t10.accountingBodyName
UNION ALL
SELECT a.id AS orderDetailId, 0 AS statistics_in_price, 0 AS in_price, 0 - IFNULL(b.deduction_price, 0) AS statistics_gross_profit, 0 - IFNULL(b.deduction_price, 0) AS gross_profit, 0 AS examine_price, 0 - IFNULL(b.deduction_price, 0) AS examine_gross_profit, t2.is_mobile is_mobile, b.return_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成返销' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, if(t4.is_mobile = true, t1.imei_2, '') imei2, if(t4.is_mobile = true, t1.imei_3, '') imei3, if(t4.is_mobile = true, t1.imei_4, '') imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 AS count, 0 AS price, t2.price AS price2, 0 AS sell_price, 0 AS gift_price, 0 AS discount_price, 0 AS point_price, 0 AS statistics_price, 0 - IFNULL(b.deduction_price, 0) AS actualPaymentPrice, 0 AS self_modify_price, 0 AS in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.COMMENT COMMENT, t2.COMMENT product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail a
INNER JOIN t_operator_business b
ON a.id = b.order_detail_id
INNER JOIN t_order_detail t2
ON a.detail_parent_id = t2.id
LEFT JOIN t_order c FORCE INDEX (torder_ix_order_id)
ON a.order_id = c.order_id
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND c.order_complete_time <= b.return_time
AND b.`status` = 2
AND b.is_delete = 0
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND b.version = 0
AND b.return_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT t2.id AS orderDetailId, 0 statistics_in_price, 0 in_price, 0 - (t6.return_price * t6.return_count) statistics_gross_profit, 0 - (t6.return_price * t6.return_count) gross_profit, 0 examine_price, 0 - (t6.return_price * t6.return_count) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '价格保障' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 - t6.return_price * t6.return_count actualPaymentPrice, 0 - t6.return_price * t6.return_count statistics_price, 0 self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_return_detail t6
ON t2.id = t6.order_detail_id
AND t6.mkc_id IS NULL
LEFT JOIN t_return t7
ON t6.return_id = t7.id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_order_detail_extend vpcc
ON t2.id = vpcc.id
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t6.is_delete = 0
AND t7.is_delete = 0
AND t7.return_type = 8
AND t7.check2_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT t2.id AS orderDetailId, 0 statistics_in_price, 0 in_price, 0 - (t6.return_price * t6.return_count) statistics_gross_profit, 0 - (t6.return_price * t6.return_count) gross_profit, 0 examine_price, 0 - (t6.return_price * t6.return_count) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '价格保障' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 - t6.return_price * t6.return_count actualPaymentPrice, 0 - t6.return_price * t6.return_count statistics_price, 0 self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_return_detail t6
ON t6.mkc_id = t1.mkc_id
LEFT JOIN t_return t7
ON t6.return_id = t7.id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_order_detail_extend vpcc
ON t2.id = vpcc.id
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t6.is_delete = 0
AND t7.is_delete = 0
AND t7.return_type = 8
AND t7.check2_time BETWEEN '2024-11-01 00:00:00'
AND '2024-11-18 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) ORDER BY date DESC, orderDetailId DESC) t
LEFT JOIN t_category category
ON t.cid = category.id
LEFT JOIN t_depart_info t8
ON t.area_id = t8.id GROUP BY t.in_user_id, t.in_user_name) a
UNION SELECT *, 'B' AS data_mark
FROM (SELECT t.in_user_id, t.in_user_name, IFNULL(sum(t.count), 0) counts, IFNULL(sum(t.price), 0) price, IFNULL(sum(t.sell_price), 0) sell_price, ROUND(sum(t.price) / sum(t.count), 2) avg_price, IFNULL(SUM(t.gift_price), 0) gift_price, IFNULL(sum(t.discount_price), 0) discount_price, IFNULL(sum(t.point_price), 0) point_price, IFNULL(sum(t.self_modify_price), 0) self_modify_price, sum(t.actualPaymentPrice) statistics_price, sum(IFNULL(t.statistics_in_price, 0)) statistics_in_price, sum(t.statistics_gross_profit) statistics_gross_profit, sum(IFNULL(t.in_price, 0)) in_price, sum(t.gross_profit) gross_profit, ROUND(sum(t.statistics_gross_profit) / sum(t.count), 2) avg_statistics_gross_profit, SUM(IFNULL(t.examine_price, 0)) examine_price, SUM(t.examine_gross_profit) examine_gross_profit, ROUND(sum(t.examine_gross_profit) / sum(t.count), 2) avg_examine_gross_profit
FROM (WITH adjustPriceTemp AS (SELECT t1.mkc_id AS mkc_id, sum(if(t17.type = 3, t16.adjust_price, 0.00)) AS self_modify_price, sum(if(t17.type = 2
AND t16.is_adjust_after_trade = false, t16.adjust_price, 0.00)) AS before_in_source_modify_price, sum(if(t17.type = 2
AND t16.is_adjust_after_trade = true, t16.adjust_price, 0.00)) AS after_in_source_modify_price, sum(if(t17.type = 2, t16.adjust_price, 0.00)) AS in_source_modify_price
FROM t_product_stock_detail t1
LEFT JOIN t_order_detail t2
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_return_detail t6
ON t1.mkc_id = t6.mkc_id
LEFT JOIN t_return t7
ON t6.return_id = t7.id
AND t7.is_delete = 0
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
LEFT JOIN t_product_adjust_price_detail t16
ON t16.mkc_id = t1.mkc_id
LEFT JOIN t_product_adjust_price t17
ON t17.id = t16.adjust_price_id
AND t17.status = 3
WHERE t3.order_state = 9
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t6.is_delete = 0
AND t7.is_delete = 0
AND t16.is_delete = 0
AND t2.is_mobile = TRUE
AND t17.type IN (2, 3)
AND t7.check2_time BETWEEN '2024-10-14 00:00:00'
AND '2024-10-31 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t1.mkc_id)
SELECT t2.id AS orderDetailId, 0 - (IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0)) statistics_in_price, 0 - t1.inprice in_price, 0 - t6.return_price + IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0) statistics_gross_profit, 0 - t6.return_price + IFNULL(t1.inprice, 0) gross_profit, 0 - t1.examine_price examine_price, 0 - (t6.return_price - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei i_mei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '-1' AS count, 0 - t2.price price, 0 - t2.price price2, 0 - t2.sell_price sell_price, 0 - t2.gift_price gift_price, 0 - t2.discount_price discount_price, 0 - t2.point_price point_price, 0 - t6.return_price statistics_price, 0 - t6.return_price actualPaymentPrice, 0 - IFNULL(t16.self_modify_price, 0.00) self_modify_price, 0 - IFNULL(t16.after_in_source_modify_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid AS product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) AS customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1
AND t2.product_stock_type != 3)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_return_detail t6
ON t1.mkc_id = t6.mkc_id
AND t6.product_stock_type != 3
AND t6.is_delete = 0
LEFT JOIN t_return t7
ON t6.return_id = t7.id
AND t7.is_delete = 0
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
LEFT JOIN adjustPriceTemp t16
ON t16.mkc_id = t1.mkc_id
WHERE t3.order_state = 9
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t7.return_type NOT IN (7, 8)
AND t7.is_delete = 0
AND t2.is_mobile = TRUE
AND t2.product_stock_type != 3
AND t7.check2_time BETWEEN '2024-10-14 00:00:00'
AND '2024-10-31 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT t2.id AS orderDetailId, t1.statistics_price statistics_in_price, t1.inprice in_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.statistics_price, 0)) statistics_gross_profit, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.inprice, 0)) gross_profit, t1.examine_price examine_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 i_mei2, t1.imei_3 i_mei3, t1.imei_4 i_mei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '1' AS count, t2.price price, t2.price price2, t2.sell_price sell_price, t2.gift_price gift_price, t2.discount_price discount_price, t2.point_price point_price, t2.statictisc_price statistics_price, (t2.price - t2.discount_price - t2.point_price) actualPaymentPrice, t1.modify_price self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1
AND t2.product_stock_type != 3)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t2.is_mobile = TRUE
AND t2.product_stock_type != 3
AND t3.order_complete_time BETWEEN '2024-10-14 00:00:00'
AND '2024-10-31 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT t2.id AS orderDetailId, 0 - t16.adjust_price statistics_in_price, 0 in_price, t16.adjust_price statistics_gross_profit, 0 gross_profit, 0 examine_price, 0 examine_gross_profit, t2.is_mobile is_mobile, t17.handle_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成价保' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, 0 AS count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 statistics_price, 0 actualPaymentPrice, if(t17.type = 3, t16.adjust_price, 0.00) self_modify_price, if(t17.type = 2, t16.adjust_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1
AND t2.product_stock_type != 3)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t1.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
LEFT JOIN t_product_adjust_price_detail t16
ON t16.mkc_id = t1.mkc_id
LEFT JOIN t_product_adjust_price t17
ON t17.id = t16.adjust_price_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t2.is_mobile = TRUE
AND t2.product_stock_type != 3
AND t17.status = 3
AND t17.type IN (2, 3)
AND t16.is_adjust_after_trade = true
AND t17.handle_time BETWEEN '2024-10-14 00:00:00'
AND '2024-10-31 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6)
UNION ALL
SELECT max(t10.id) AS orderDetailId, SUM(t10.statistics_in_price) statistics_in_price, SUM(t10.in_price) in_price, SUM(t10.statistics_gross_profit) statistics_gross_profit, sum(t10.gross_profit) gross_profit, SUM(t10.examine_price) examine_price, SUM(t10.examine_gross_profit) examine_gross_profit, t10.is_mobile is_mobile, t10.date date, t10.order_complete_time, t10.area_id area_id, t10.accountingBodyId, t10.accountingBodyName, t10.order_id order_id, t10.business_type business_type, t10.order_type order_type, t10.user_id user_id, t10.ppid sku_id, t10.detail_type, t10.insource_id insource_id, t10.inSourceId2 inSourceId2, t10.i_mei_or_barcode i_mei, t10.imei2 imei2, t10.imei3 imei3, t10.imei4 imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, SUM(t10.count) count, SUM(t10.price) price, SUM(t10.price) price2, SUM(t10.sell_price) sell_price, SUM(t10.gift_price) gift_price, SUM(t10.discount_price) discount_price, SUM(t10.point_price) point_price, SUM(t10.statistics_price) statistics_price, SUM(t10.actualPaymentPrice) actualPaymentPrice, SUM(t10.self_modify_price) self_modify_price, 0 in_source_modify_price, t10.in_user_id in_user_id, t10.in_user_name in_user_name, t10.product_color product_color, t10.product_id product_id, t10.cid cid, t10.brand_id brand_id, t10.product_name product_name, t10.customer_type customer_type, t10.order_customer_type order_customer_type, t10.customer_name customer_name, t10.customer_phone customer_phone, t10.contract_name contract_name, t10.contract_mobile contract_mobile, t10.trader_name trader_name, t10.comment comment, t10.product_comment product_comment, t10.label_id label_id, t10.label_name label_name, t10.detail_parent_id, t10.serial_number_mark_name serial_number_mark_name, t10.serial_number_mark_color serial_number_mark_color, t10.serial_number_mark serial_number_mark, t10.aux_sale_man_names, t10.sample_product
FROM (SELECT t2.id, SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, if(t2.virtual_product = 0, sum(t1.counts), t2.counts) count, t2.price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) price, t2.sell_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) sell_price, t2.gift_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) gift_price, t2.discount_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) discount_price, t2.point_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) point_price, t2.statictisc_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) statistics_price, (t2.price - t2.discount_price - t2.point_price) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) actualPaymentPrice, SUM(IFNULL(t1.modify_price * t1.counts, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_order_detail_extend vpcc
ON t2.id = vpcc.id
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state IN (3, 9)
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t2.is_mobile = FALSE
AND t3.order_complete_time BETWEEN '2024-10-14 00:00:00'
AND '2024-10-31 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t3.trader_name, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name
UNION ALL
SELECT t2.id, 0 - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, 0 - SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1
AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, 0 - SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, 0 - count(t2.id) * t6.return_count count, 0 - (t2.price * count(t2.id)) * t6.return_count price, 0 - (t2.sell_price * count(t2.id)) * t6.return_count sell_price, 0 - (t2.gift_price * count(t2.id)) * t6.return_count gift_price, 0 - (t2.discount_price * count(t2.id)) * t6.return_count discount_price, 0 - (t2.point_price * count(t2.id)) * t6.return_count point_price, 0 - (t6.return_price * count(t2.id)) * t6.return_count actualPaymentPrice, 0 - (t6.return_price * count(t2.id)) * t6.return_count statistics_price, 0 - SUM(IFNULL(t1.modify_price, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status
FROM t_order_detail t2
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN (SELECT order_detail_id, avg(return_price) return_price, is_delete, return_id, return_count
FROM t_return_detail
WHERE is_delete = 0
AND order_detail_type = 1 GROUP BY order_detail_id, return_id, is_delete, return_count) t6
ON t2.id = t6.order_detail_id
LEFT JOIN t_return t7
ON t6.return_id = t7.id
LEFT JOIN t_depart_info t8
ON t3.area_id = t8.id
LEFT JOIN t_operator_business t16
ON (t2.id = t16.order_detail_id)
LEFT JOIN t_after_services_buy t17
ON t2.id = t17.bind_order_detail_id
AND t17.is_delete = 0
LEFT JOIN t_special_user t11
ON t11.user_id = t3.user_id
LEFT JOIN t_product_label pl
ON t4.productid = pl.product_id
AND pl.is_delete = 0
LEFT JOIN t_label la
ON pl.label_id = la.id
AND la.is_delete = 0
LEFT JOIN t_sys_config sysc
ON t1.serial_number_mark = sysc.id
AND sysc.is_delete = 0
LEFT JOIN t_order_detail_extend vpcc
ON t2.id = vpcc.id
LEFT JOIN t_finance_accounting_body t40
ON t40.id = t8.accounting_body_id
LEFT JOIN t_order_extend t36
ON t3.order_id = t36.order_id
WHERE t3.order_state = 9
AND t2.is_delete = 0
AND t3.is_delete = 0
AND t5.is_delete = 0
AND t6.is_delete = 0
AND t7.is_delete = 0
AND t7.return_type NOT IN (7, 8)
AND t2.is_mobile = FALSE
AND t7.check2_time BETWEEN '2024-10-14 00:00:00'
AND '2024-10-31 23:59:59'
AND t3.area_id IN (216)
AND t3.area_id IN (216)
AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t6.return_price, t6.return_count, t7.check2_time, t7.check2_user_name, t7.comment, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name) t10
WHERE is_mobile IS NOT NULL
AND area_id IS NOT NULL
AND order_id IS NOT NULL GROUP BY t10.business_type, t10.is_mobile, t10.date, t10.order_complete_time, t10.area_id, t10.order_id, t10.order_type, t10.user_id, t10.ppid, t10.insource_id, t10.i_mei_or_barcode, t10.in_user_id, t10.in_user_name, t10.product_color, t10.product_id, t10.cid, t10.brand_id, t10.product_name, t10.customer_type, t10.order_customer_type, t10.customer_name, t10.customer_phone, t10.contract_name, t10.contract_mobile, t10.trader_name, t10.inSourceId2, t10.detail_type, t10.comment, t10.product_comment, t10.label_id, t10.label_name, t10.detail_parent_id, t10.imei2, t10.imei3, t10.imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, t10.serial_number_mark_name, t10.serial_number_mark_color, t10.serial_number_mark, t10.aux_sale_man_names, t10.sample_product, t10.accountingBodyId, t10.accountingBodyName
UNION ALL
SELECT a.id AS orderDetailId, 0 AS statistics_in_price, 0 AS in_price, 0 - IFNULL(b.deduction_price, 0) AS statistics_gross_profit, 0 - IFNULL(b.deduction_price, 0) AS gross_profit, 0 AS examine_price, 0 - IFNULL(b.deduction_price, 0) AS examine_gross_profit, t2.is_mobile is_mobile, b.return_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成返销' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, if(t4.is_mobile = true, t1.imei_2, '') imei2, if(t4.is_mobile = true, t1.imei_3, '') imei3, if(t4.is_mobile = true, t1.imei_4, '') imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 AS count, 0 AS price, t2.price AS price2, 0 AS sell_price, 0 AS gift_price, 0 AS discount_price, 0 AS point_price, 0 AS statistics_price, 0 - IFNULL(b.deduction_price, 0) AS actualPaymentPrice, 0 AS self_modify_price, 0 AS in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3
OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.COMMENT COMMENT, t2.COMMENT product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product
FROM t_order_detail a
INNER JOIN t_operator_business b
ON a.id = b.order_detail_id
INNER JOIN t_order_detail t2
ON a.detail_parent_id = t2.id
LEFT JOIN t_order c FORCE INDEX (torder_ix_order_id)
ON a.order_id = c.order_id
LEFT JOIN t_product_stock_detail t1
ON (t1.order_detail_id = t2.id
AND t1.order_detail_type = 1)
LEFT JOIN t_order t3
ON t2.order_id = t3.order_id
LEFT JOIN t_product_info t4
ON t2.ppid = t4.ppriceid
LEFT JOIN t_user t5
ON t5.id = t3.user_id
LEFT JOIN t_depart_info t8
ON t3.area_
3 2024-11-21 10:16:19.220900 2024-11-21 10:16:28.428100 9207211 neo_dev root small_oa_169 11150 1006 5.7.25-OceanBase_CE-v4.3.4.0 10.1.250.157 2882
select * from oceanbase.gv$ob_plan_cache_plan_explain where tenant_id = 1006 and plan_id = 11150  and svr_ip = '10.1.250.157' and svr_port = 2882
+-----------+--------------+----------+---------+------------+--------------+--------------------------------------------------------+--------------------------------------------+-------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| TENANT_ID | SVR_IP       | SVR_PORT | PLAN_ID | PLAN_DEPTH | PLAN_LINE_ID | OPERATOR                                               | NAME                                       | ROWS  | COST   | PROPERTY                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
+-----------+--------------+----------+---------+------------+--------------+--------------------------------------------------------+--------------------------------------------+-------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| 1006      | 10.1.250.157 | 2882     | 11150   | 0          | 0            | PHY_VEC_LIMIT                                          | NULL                                       | 10    | 832499 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 1          | 1            |  PHY_VEC_SORT                                          | NULL                                       | 10    | 832499 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 2          | 2            |   PHY_VEC_HASH_GROUP_BY                                | NULL                                       | 1078  | 832422 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 3          | 3            |    PHY_VEC_SUBPLAN_SCAN                                | NULL                                       | 1079  | 829895 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 4          | 4            |     PHY_VEC_HASH_UNION                                 | NULL                                       | 1079  | 829893 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 5          | 5            |      PHY_VEC_HASH_GROUP_BY                             | NULL                                       | 468   | 331523 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 6          | 6            |       PHY_VEC_SUBPLAN_SCAN                             | NULL                                       | 468   | 330679 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 7          | 7            |        PHY_MERGE_UNION                                 | NULL                                       | 468   | 330678 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 8            |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 36104  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 9            |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 35700  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 10           |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 35684  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 11           |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 35684  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 12           |             PHY_VEC_HASH_JOIN                          | NULL                                       | 1     | 35668  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 13           |              PHY_PX_FIFO_COORD                         | NULL                                       | 1     | 35665  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 14           |               PHY_PX_REDUCE_TRANSMIT                   | NULL                                       | 1     | 35665  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 15           |                PHY_NESTED_LOOP_JOIN                    | NULL                                       | 1     | 35664  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 16           |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 35648  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 17           |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 155   | 31460  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 18           |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 239   | 27623  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 19           |                    PHY_PX_FIFO_RECEIVE                 | NULL                                       | 261   | 4189   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 20           |                     PHY_PX_DIST_TRANSMIT               | NULL                                       | 261   | 3913   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 21           |                      PHY_VEC_HASH_JOIN                 | NULL                                       | 261   | 3479   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 22           |                       PHY_TABLE_SCAN                   | t7(treturn_ix_check2_time)                 | 233   | 1172   | table_rows:15920, physical_range_rows:374, logical_range_rows:374, index_back_rows:374, output_rows:232, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:374, physical_rc:374)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 23           |                       PHY_VEC_TABLE_SCAN               | t6                                         | 6350  | 1699   | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:6349, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 24           |                    PHY_VEC_GRANULE_ITERATOR            | NULL                                       | 1     | 267    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 25           |                     PHY_TABLE_SCAN                     | t1(index_mck_id)                           | 1     | 267    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 26           |                   PHY_TABLE_SCAN                       | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 27           |                  PHY_TABLE_SCAN                        | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 28           |                 PHY_TABLE_SCAN                         | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 29           |              PHY_VEC_TABLE_SCAN                        | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 30           |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 31           |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 32           |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 33           |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 34           |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 35           |           PHY_TABLE_SCAN                               | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 36           |          PHY_VEC_SUBPLAN_SCAN                          | NULL                                       | 1     | 403    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 37           |           PHY_VEC_MERGE_GROUP_BY                       | NULL                                       | 1     | 403    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 38           |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 403    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 39           |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 387    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 40           |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 1     | 357    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 41           |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 1     | 340    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 42           |                PHY_VEC_HASH_JOIN                       | NULL                                       | 1     | 313    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 43           |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 311    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 44           |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 295    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 45           |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 279    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 46           |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1     | 263    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 47           |                     PHY_NESTED_LOOP_JOIN               | NULL                                       | 1     | 235    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 48           |                      PHY_TABLE_SCAN                    | t1(index_mck_id)                           | 1     | 219    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail], estimation info[table_id:503450, (table_type:10, version:-1--1--1, logical_rc:73649, physical_rc:73649), (table_type:10, version:-1--1--1, logical_rc:26518, physical_rc:26518), (table_type:10, version:-1--1--1, logical_rc:49733, physical_rc:49733), (table_type:10, version:-1--1--1, logical_rc:41548, physical_rc:41548), (table_type:10, version:-1--1--1, logical_rc:57710, physical_rc:57710), (table_type:10, version:-1--1--1, logical_rc:54346, physical_rc:54346), (table_type:10, version:-1--1--1, logical_rc:31239, physical_rc:31239), (table_type:10, version:-1--1--1, logical_rc:29548, physical_rc:29548), (table_type:10, version:-1--1--1, logical_rc:66798, physical_rc:66798), (table_type:10, version:-1--1--1, logical_rc:489700, physical_rc:489700)] |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 49           |                      PHY_TABLE_SCAN                    | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 50           |                     PHY_TABLE_SCAN                     | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 51           |                    PHY_TABLE_SCAN                      | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 52           |                   PHY_TABLE_SCAN                       | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 53           |                  PHY_TABLE_SCAN                        | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 54           |                 PHY_VEC_TABLE_SCAN                     | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 55           |                PHY_TABLE_SCAN                          | t6(idx_mkc_id)                             | 1     | 26     | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_return_detail_return_id], unstable_index_name[t_return_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 56           |               PHY_TABLE_SCAN                           | t7                                         | 1     | 15     | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 57           |              PHY_TABLE_SCAN                            | t16(trebate_detail_mkc_id)                 | 2     | 29     | table_rows:174768, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,idx_adjust_price_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 58           |             PHY_TABLE_SCAN                             | t17                                        | 1     | 15     | table_rows:9269, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[table_index,t_product_adjust_price], pruned_index_name[table_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 59           |         PHY_VEC_MERGE_JOIN                             | NULL                                       | 310   | 75952  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 60           |          PHY_VEC_TABLE_SCAN                            | t36(idx_order_id)                          | 1268  | 34     | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend], estimation info[table_id:501169, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 61           |          PHY_SORT                                      | NULL                                       | 307   | 75849  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 62           |           PHY_VEC_HASH_JOIN                            | NULL                                       | 307   | 75662  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 63           |            PHY_VEC_TABLE_SCAN                          | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 64           |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 307   | 75633  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 65           |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 307   | 70702  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 66           |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 232   | 14342  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 67           |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 182   | 8434   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 68           |                PHY_PX_FIFO_COORD                       | NULL                                       | 182   | 8429   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 69           |                 PHY_PX_REDUCE_TRANSMIT                 | NULL                                       | 182   | 8394   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 70           |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 182   | 8317   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 71           |                   PHY_TABLE_SCAN                       | t3(torder_ix_area_id)                      | 182   | 5394   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:181, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 72           |                   PHY_TABLE_SCAN                       | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 73           |                PHY_VEC_MATERIAL                        | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 74           |                 PHY_PX_FIFO_COORD                      | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 75           |                  PHY_PX_REDUCE_TRANSMIT                | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 76           |                   PHY_VEC_TABLE_SCAN                   | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 77           |               PHY_TABLE_SCAN                           | t2(index_orderId)                          | 2     | 31     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 78           |              PHY_TABLE_SCAN                            | t1(tproductstockdetail_ix_order_detail_id) | 2     | 242    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 79           |             PHY_TABLE_SCAN                             | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 80           |         PHY_VEC_HASH_JOIN                              | NULL                                       | 3     | 99999  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 81           |          PHY_VEC_TABLE_SCAN                            | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 82           |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 3     | 99996  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 83           |           PHY_PX_FIFO_COORD                            | NULL                                       | 3     | 99996  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 84           |            PHY_PX_REDUCE_TRANSMIT                      | NULL                                       | 3     | 99994  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 85           |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 3     | 99989  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 86           |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 3     | 99949  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 87           |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 3     | 99910  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 88           |                PHY_VEC_HASH_JOIN                       | NULL                                       | 3     | 99871  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 89           |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 476   | 93805  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 90           |                  PHY_PX_FIFO_RECEIVE                   | NULL                                       | 735   | 80067  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 91           |                   PHY_PX_DIST_TRANSMIT                 | NULL                                       | 735   | 79516  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 92           |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 735   | 78279  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 93           |                     PHY_PX_FIFO_RECEIVE                | NULL                                       | 744   | 11483  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 94           |                      PHY_PX_DIST_TRANSMIT              | NULL                                       | 744   | 10211  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 95           |                       PHY_NESTED_LOOP_JOIN             | NULL                                       | 744   | 8203   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 96           |                        PHY_VEC_TABLE_SCAN              | t17(table_index)                           | 78    | 11     | table_rows:9269, physical_range_rows:78, logical_range_rows:78, index_back_rows:0, output_rows:78, avaiable_index_name[table_index,t_product_adjust_price], unstable_index_name[t_product_adjust_price], estimation info[table_id:501362, (table_type:10, version:-1--1--1, logical_rc:78, physical_rc:78)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 97           |                        PHY_TABLE_SCAN                  | t16(idx_adjust_price_id)                   | 14    | 103    | table_rows:174768, physical_range_rows:19, logical_range_rows:19, index_back_rows:19, output_rows:13, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 98           |                     PHY_VEC_GRANULE_ITERATOR           | NULL                                       | 1     | 267    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 99           |                      PHY_TABLE_SCAN                    | t1(index_mck_id)                           | 1     | 267    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 100          |                  PHY_VEC_TABLE_SCAN                    | t2                                         | 1     | 17     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 101          |                 PHY_TABLE_SCAN                         | t3(torder_ix_area_id)                      | 1465  | 5765   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:1464, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 102          |                PHY_TABLE_SCAN                          | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 103          |               PHY_TABLE_SCAN                           | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 104          |              PHY_TABLE_SCAN                            | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 105          |           PHY_VEC_MATERIAL                             | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 106          |            PHY_PX_FIFO_COORD                           | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 107          |             PHY_PX_REDUCE_TRANSMIT                     | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 108          |              PHY_VEC_TABLE_SCAN                        | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 109          |         PHY_VEC_HASH_GROUP_BY                          | NULL                                       | 156   | 113527 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 110          |          PHY_VEC_SUBPLAN_SCAN                          | NULL                                       | 156   | 112830 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 111          |           PHY_MERGE_UNION                              | NULL                                       | 156   | 112830 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 112          |            PHY_VEC_HASH_GROUP_BY                       | NULL                                       | 155   | 96453  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 113          |             PHY_VEC_HASH_JOIN                          | NULL                                       | 310   | 95532  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 114          |              PHY_PX_FIFO_COORD                         | NULL                                       | 328   | 1114   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 115          |               PHY_PX_REDUCE_TRANSMIT                   | NULL                                       | 328   | 788    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 116          |                PHY_VEC_TABLE_SCAN                      | sysc                                       | 328   | 55     | table_rows:655, physical_range_rows:655, logical_range_rows:655, index_back_rows:0, output_rows:327, avaiable_index_name[t_sys_config], estimation info[table_id:501959, (table_type:10, version:-1--1--1, logical_rc:655, physical_rc:655)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 117          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 310   | 94279  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 118          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 235   | 37171  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 119          |                PHY_NESTED_LOOP_JOIN                    | NULL                                       | 235   | 33391  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 120          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 235   | 29612  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 121          |                  PHY_VEC_HASH_JOIN                     | NULL                                       | 235   | 22847  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 122          |                   PHY_VEC_HASH_JOIN                    | NULL                                       | 235   | 17402  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 123          |                    PHY_VEC_TABLE_SCAN                  | t36                                        | 1268  | 57     | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], estimation info[table_id:501168, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 124          |                    PHY_VEC_HASH_JOIN                   | NULL                                       | 232   | 17066  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 125          |                     PHY_VEC_TABLE_SCAN                 | la                                         | 2     | 2      | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 126          |                     PHY_VEC_HASH_JOIN                  | NULL                                       | 232   | 17037  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 127          |                      PHY_VEC_TABLE_SCAN                | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 128          |                      PHY_NESTED_LOOP_JOIN              | NULL                                       | 232   | 17014  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 129          |                       PHY_VEC_HASH_JOIN                | NULL                                       | 232   | 13280  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 130          |                        PHY_VEC_TABLE_SCAN              | t40                                        | 1     | 2      | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 131          |                        PHY_NESTED_LOOP_JOIN            | NULL                                       | 232   | 13251  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 24         | 132          |                         PHY_NESTED_LOOP_JOIN           | NULL                                       | 182   | 7125   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 133          |                          PHY_PX_FIFO_COORD             | NULL                                       | 182   | 7120   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 134          |                           PHY_PX_REDUCE_TRANSMIT       | NULL                                       | 182   | 6665   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 135          |                            PHY_VEC_HASH_JOIN           | NULL                                       | 182   | 5641   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 136          |                             PHY_VEC_TABLE_SCAN         | t11                                        | 320   | 16     | table_rows:320, physical_range_rows:320, logical_range_rows:320, index_back_rows:0, output_rows:320, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username], estimation info[table_id:501933, (table_type:10, version:-1--1--1, logical_rc:320, physical_rc:320)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 137          |                             PHY_TABLE_SCAN             | t3(torder_ix_area_id)                      | 182   | 5526   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:181, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 138          |                          PHY_VEC_MATERIAL              | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 139          |                           PHY_PX_FIFO_COORD            | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 140          |                            PHY_PX_REDUCE_TRANSMIT      | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 141          |                             PHY_VEC_TABLE_SCAN         | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 24         | 142          |                         PHY_TABLE_SCAN                 | t2(index_orderId)                          | 2     | 32     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 143          |                       PHY_TABLE_SCAN                   | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 144          |                   PHY_VEC_TABLE_SCAN                   | t16                                        | 37334 | 1828   | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:37334, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 145          |                  PHY_TABLE_SCAN                        | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 146          |                 PHY_TABLE_SCAN                         | vpcc                                       | 1     | 15     | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 147          |                PHY_TABLE_SCAN                          | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 148          |               PHY_TABLE_SCAN                           | t1(tproductstockdetail_ix_order_detail_id) | 2     | 242    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 149          |            PHY_VEC_HASH_GROUP_BY                       | NULL                                       | 1     | 16376  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 150          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 16375  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 151          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 1     | 16359  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 152          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 1     | 16115  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 153          |                PHY_NESTED_LOOP_JOIN                    | NULL                                       | 1     | 16086  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 154          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 16059  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 155          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 16032  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 156          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 16005  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 157          |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1     | 15989  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 158          |                     PHY_VEC_MERGE_JOIN                 | NULL                                       | 1     | 15973  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 159          |                      PHY_VEC_TABLE_SCAN                | la                                         | 2     | 2      | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 160          |                      PHY_SORT                          | NULL                                       | 1     | 15970  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 161          |                       PHY_VEC_MERGE_JOIN               | NULL                                       | 1     | 15970  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 162          |                        PHY_VEC_TABLE_SCAN              | t40                                        | 1     | 2      | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 163          |                        PHY_SORT                        | NULL                                       | 1     | 15968  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 24         | 164          |                         PHY_VEC_HASH_JOIN              | NULL                                       | 1     | 15968  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 165          |                          PHY_VEC_TABLE_SCAN            | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 166          |                          PHY_NESTED_LOOP_JOIN          | NULL                                       | 1     | 15965  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 167          |                           PHY_NESTED_LOOP_JOIN         | NULL                                       | 1     | 15949  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 168          |                            PHY_PX_FIFO_COORD           | NULL                                       | 1     | 15949  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 169          |                             PHY_PX_REDUCE_TRANSMIT     | NULL                                       | 1     | 15948  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 29         | 170          |                              PHY_VEC_HASH_JOIN         | NULL                                       | 1     | 15945  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 30         | 171          |                               PHY_TABLE_SCAN           | t3(torder_ix_area_id)                      | 228   | 5415   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:227, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 30         | 172          |                               PHY_NESTED_LOOP_JOIN     | NULL                                       | 257   | 10369  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 31         | 173          |                                PHY_VEC_HASH_JOIN       | NULL                                       | 257   | 6242   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 32         | 174          |                                 PHY_TABLE_SCAN         | t7(treturn_ix_check2_time)                 | 233   | 1223   | table_rows:15920, physical_range_rows:374, logical_range_rows:374, index_back_rows:374, output_rows:232, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:374, physical_rc:374)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| 1006      | 10.1.250.157 | 2882     | 11150   | 32         | 175          |                                 PHY_VEC_SUBPLAN_SCAN   | NULL                                       | 5499  | 4462   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 33         | 176          |                                  PHY_VEC_HASH_GROUP_BY | NULL                                       | 5499  | 4447   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 34         | 177          |                                   PHY_VEC_TABLE_SCAN   | t_return_detail                            | 5499  | 1733   | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:5498, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_mkc_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 31         | 178          |                                PHY_TABLE_SCAN          | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 179          |                            PHY_VEC_MATERIAL            | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 180          |                             PHY_PX_FIFO_COORD          | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 29         | 181          |                              PHY_PX_REDUCE_TRANSMIT    | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 30         | 182          |                               PHY_VEC_TABLE_SCAN       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 183          |                           PHY_TABLE_SCAN               | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 184          |                     PHY_TABLE_SCAN                     | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 185          |                    PHY_TABLE_SCAN                      | vpcc                                       | 1     | 15     | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 186          |                   PHY_TABLE_SCAN                       | t16(index_orderDetailId)                   | 1     | 26     | table_rows:37334, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderDetailId,t_operator_business], pruned_index_name[t_operator_business]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 187          |                  PHY_TABLE_SCAN                        | t11(un_idx_special_user_id)                | 1     | 26     | table_rows:320, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username,t_special_user]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 188          |                 PHY_TABLE_SCAN                         | t36(idx_order_id)                          | 2     | 26     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], unstable_index_name[t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 189          |                PHY_TABLE_SCAN                          | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 190          |               PHY_TABLE_SCAN                           | t1(tproductstockdetail_ix_order_detail_id) | 2     | 242    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 191          |              PHY_TABLE_SCAN                            | sysc                                       | 1     | 15     | table_rows:655, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[t_sys_config]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 192          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 4526   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 193          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 4510   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 194          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 4481   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 195          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 4481   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 196          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 4465   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 197          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 1     | 4437   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 198          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 1     | 4283   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 199          |                PHY_VEC_HASH_JOIN                       | NULL                                       | 2     | 4247   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 200          |                 PHY_VEC_TABLE_SCAN                     | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 201          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 2     | 4244   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 202          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 2     | 4222   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 203          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 18    | 3933   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 204          |                    PHY_VEC_TABLE_SCAN                  | b                                          | 18    | 3645   | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:17, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 205          |                    PHY_TABLE_SCAN                      | a                                          | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 206          |                   PHY_TABLE_SCAN                       | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 207          |                  PHY_TABLE_SCAN                        | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 208          |                PHY_TABLE_SCAN                          | c(torder_ix_order_id)                      | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 209          |               PHY_TABLE_SCAN                           | t1(tproductstockdetail_ix_order_detail_id) | 2     | 153    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 210          |              PHY_TABLE_SCAN                            | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 211          |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 212          |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 213          |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 214          |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 215          |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 216          |           PHY_TABLE_SCAN                               | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 217          |          PHY_TABLE_SCAN                                | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 218          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 315    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 219          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 299    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 220          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 299    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 221          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 145    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 222          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 116    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 223          |              PHY_VEC_HASH_JOIN                         | NULL                                       | 1     | 100    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 224          |               PHY_PX_FIFO_COORD                        | NULL                                       | 1     | 98     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 225          |                PHY_PX_REDUCE_TRANSMIT                  | NULL                                       | 1     | 98     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 226          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 98     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 227          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 81     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 228          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 54     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 229          |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 230          |                     PHY_TABLE_SCAN                     | t7(treturn_ix_return_type)                 | 1     | 8      | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 231          |                     PHY_TABLE_SCAN                     | t6(idx_return_detail_return_id)            | 1     | 29     | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], unstable_index_name[t_return_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 232          |                    PHY_TABLE_SCAN                      | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 233          |                   PHY_TABLE_SCAN                       | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 234          |                  PHY_TABLE_SCAN                        | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 235          |               PHY_VEC_TABLE_SCAN                       | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 236          |              PHY_TABLE_SCAN                            | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 237          |             PHY_TABLE_SCAN                             | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 238          |            PHY_TABLE_SCAN                              | t1(tproductstockdetail_ix_order_detail_id) | 2     | 153    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 239          |           PHY_VEC_MATERIAL                             | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 240          |            PHY_PX_FIFO_COORD                           | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 241          |             PHY_PX_REDUCE_TRANSMIT                     | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 242          |              PHY_VEC_TABLE_SCAN                        | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 243          |          PHY_TABLE_SCAN                                | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 244          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 251    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 245          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 235    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 246          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 206    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 247          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 206    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 248          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 190    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 249          |              PHY_VEC_HASH_JOIN                         | NULL                                       | 1     | 163    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 250          |               PHY_PX_FIFO_COORD                        | NULL                                       | 1     | 160    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 251          |                PHY_PX_REDUCE_TRANSMIT                  | NULL                                       | 1     | 160    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 252          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 160    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 253          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 144    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 254          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 128    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 255          |                    PHY_PX_FIFO_RECEIVE                 | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 256          |                     PHY_PX_DIST_TRANSMIT               | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 257          |                      PHY_NESTED_LOOP_JOIN              | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 258          |                       PHY_TABLE_SCAN                   | t7(treturn_ix_return_type)                 | 1     | 8      | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 259          |                       PHY_TABLE_SCAN                   | t6(idx_return_detail_return_id)            | 2     | 29     | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_mkc_id], unstable_index_name[t_return_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 260          |                    PHY_VEC_GRANULE_ITERATOR            | NULL                                       | 1     | 266    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 261          |                     PHY_TABLE_SCAN                     | t1(index_mck_id)                           | 1     | 266    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 262          |                   PHY_TABLE_SCAN                       | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 263          |                  PHY_TABLE_SCAN                        | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 264          |               PHY_VEC_TABLE_SCAN                       | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 265          |              PHY_TABLE_SCAN                            | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 266          |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 267          |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 268          |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 269          |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 270          |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 271          |           PHY_TABLE_SCAN                               | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 272          |          PHY_TABLE_SCAN                                | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 5          | 273          |      PHY_VEC_HASH_GROUP_BY                             | NULL                                       | 612   | 496414 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 6          | 274          |       PHY_VEC_SUBPLAN_SCAN                             | NULL                                       | 612   | 495309 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 7          | 275          |        PHY_MERGE_UNION                                 | NULL                                       | 612   | 495308 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 276          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 51493  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 277          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 51089  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 278          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 51073  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 279          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 51073  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 280          |             PHY_VEC_HASH_JOIN                          | NULL                                       | 1     | 51056  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 281          |              PHY_PX_FIFO_COORD                         | NULL                                       | 1     | 51054  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 282          |               PHY_PX_REDUCE_TRANSMIT                   | NULL                                       | 1     | 51053  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 283          |                PHY_NESTED_LOOP_JOIN                    | NULL                                       | 1     | 51052  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 284          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 51036  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 285          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 226   | 44911  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 286          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 349   | 39298  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 287          |                    PHY_PX_FIFO_RECEIVE                 | NULL                                       | 382   | 5025   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 288          |                     PHY_PX_DIST_TRANSMIT               | NULL                                       | 382   | 4622   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 289          |                      PHY_VEC_HASH_JOIN                 | NULL                                       | 382   | 3987   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 290          |                       PHY_TABLE_SCAN                   | t7(treturn_ix_check2_time)                 | 341   | 1644   | table_rows:15920, physical_range_rows:547, logical_range_rows:547, index_back_rows:547, output_rows:340, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:547, physical_rc:547)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 291          |                       PHY_VEC_TABLE_SCAN               | t6                                         | 6350  | 1699   | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:6349, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 292          |                    PHY_VEC_GRANULE_ITERATOR            | NULL                                       | 1     | 267    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 293          |                     PHY_TABLE_SCAN                     | t1(index_mck_id)                           | 1     | 267    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 294          |                   PHY_TABLE_SCAN                       | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 295          |                  PHY_TABLE_SCAN                        | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 296          |                 PHY_TABLE_SCAN                         | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 297          |              PHY_VEC_TABLE_SCAN                        | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 298          |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 299          |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 300          |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 301          |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 302          |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 303          |           PHY_TABLE_SCAN                               | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 304          |          PHY_VEC_SUBPLAN_SCAN                          | NULL                                       | 1     | 403    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 305          |           PHY_VEC_MERGE_GROUP_BY                       | NULL                                       | 1     | 403    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 306          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 403    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 307          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 387    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 308          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 1     | 357    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 309          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 1     | 340    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 310          |                PHY_VEC_HASH_JOIN                       | NULL                                       | 1     | 313    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 311          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 311    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 312          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 295    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 313          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 279    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 314          |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1     | 263    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 315          |                     PHY_NESTED_LOOP_JOIN               | NULL                                       | 1     | 235    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 316          |                      PHY_TABLE_SCAN                    | t1(index_mck_id)                           | 1     | 219    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail], estimation info[table_id:503450, (table_type:10, version:-1--1--1, logical_rc:73649, physical_rc:73649), (table_type:10, version:-1--1--1, logical_rc:26518, physical_rc:26518), (table_type:10, version:-1--1--1, logical_rc:49733, physical_rc:49733), (table_type:10, version:-1--1--1, logical_rc:41548, physical_rc:41548), (table_type:10, version:-1--1--1, logical_rc:57710, physical_rc:57710), (table_type:10, version:-1--1--1, logical_rc:54346, physical_rc:54346), (table_type:10, version:-1--1--1, logical_rc:31239, physical_rc:31239), (table_type:10, version:-1--1--1, logical_rc:29548, physical_rc:29548), (table_type:10, version:-1--1--1, logical_rc:66798, physical_rc:66798), (table_type:10, version:-1--1--1, logical_rc:489700, physical_rc:489700)] |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 317          |                      PHY_TABLE_SCAN                    | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 318          |                     PHY_TABLE_SCAN                     | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 319          |                    PHY_TABLE_SCAN                      | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 320          |                   PHY_TABLE_SCAN                       | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 321          |                  PHY_TABLE_SCAN                        | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 322          |                 PHY_VEC_TABLE_SCAN                     | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 323          |                PHY_TABLE_SCAN                          | t6(idx_mkc_id)                             | 1     | 26     | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_return_detail_return_id], unstable_index_name[t_return_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 324          |               PHY_TABLE_SCAN                           | t7                                         | 1     | 15     | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 325          |              PHY_TABLE_SCAN                            | t16(trebate_detail_mkc_id)                 | 2     | 29     | table_rows:174768, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,idx_adjust_price_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 326          |             PHY_TABLE_SCAN                             | t17                                        | 1     | 15     | table_rows:9269, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[table_index,t_product_adjust_price], pruned_index_name[table_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 327          |         PHY_VEC_HASH_JOIN                              | NULL                                       | 405   | 97387  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 328          |          PHY_VEC_TABLE_SCAN                            | t36(idx_order_id)                          | 1268  | 34     | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend], estimation info[table_id:501169, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 329          |          PHY_VEC_HASH_JOIN                             | NULL                                       | 400   | 97084  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 330          |           PHY_VEC_TABLE_SCAN                           | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 331          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 400   | 97048  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 332          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 400   | 90616  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 333          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 303   | 17094  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 334          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 237   | 9387   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 335          |               PHY_PX_FIFO_COORD                        | NULL                                       | 237   | 9381   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 336          |                PHY_PX_REDUCE_TRANSMIT                  | NULL                                       | 237   | 9335   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 337          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 237   | 9234   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 338          |                  PHY_TABLE_SCAN                        | t3(torder_ix_area_id)                      | 237   | 5421   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:236, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 339          |                  PHY_TABLE_SCAN                        | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 340          |               PHY_VEC_MATERIAL                         | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 341          |                PHY_PX_FIFO_COORD                       | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 342          |                 PHY_PX_REDUCE_TRANSMIT                 | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 343          |                  PHY_VEC_TABLE_SCAN                    | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 344          |              PHY_TABLE_SCAN                            | t2(index_orderId)                          | 2     | 31     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 345          |             PHY_TABLE_SCAN                             | t1(tproductstockdetail_ix_order_detail_id) | 2     | 242    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 346          |            PHY_TABLE_SCAN                              | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 347          |         PHY_VEC_HASH_JOIN                              | NULL                                       | 6     | 198930 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 348          |          PHY_VEC_TABLE_SCAN                            | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 349          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 6     | 198927 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 350          |           PHY_PX_FIFO_COORD                            | NULL                                       | 6     | 198927 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 351          |            PHY_PX_REDUCE_TRANSMIT                      | NULL                                       | 6     | 198922 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 352          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 6     | 198911 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 353          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 6     | 198831 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 354          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 6     | 198750 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 355          |                PHY_VEC_HASH_JOIN                       | NULL                                       | 6     | 198670 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 356          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 976   | 192417 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 357          |                  PHY_PX_FIFO_RECEIVE                   | NULL                                       | 1507  | 164236 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 358          |                   PHY_PX_DIST_TRANSMIT                 | NULL                                       | 1507  | 163107 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 359          |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1507  | 160569 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 360          |                     PHY_PX_FIFO_RECEIVE                | NULL                                       | 1527  | 23551  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 361          |                      PHY_PX_DIST_TRANSMIT              | NULL                                       | 1527  | 20942  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 362          |                       PHY_NESTED_LOOP_JOIN             | NULL                                       | 1527  | 16822  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 363          |                        PHY_VEC_TABLE_SCAN              | t17(table_index)                           | 160   | 18     | table_rows:9269, physical_range_rows:160, logical_range_rows:160, index_back_rows:0, output_rows:160, avaiable_index_name[table_index,t_product_adjust_price], unstable_index_name[t_product_adjust_price], estimation info[table_id:501362, (table_type:10, version:-1--1--1, logical_rc:160, physical_rc:160)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 364          |                        PHY_TABLE_SCAN                  | t16(idx_adjust_price_id)                   | 14    | 103    | table_rows:174768, physical_range_rows:19, logical_range_rows:19, index_back_rows:19, output_rows:13, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 365          |                     PHY_VEC_GRANULE_ITERATOR           | NULL                                       | 1     | 267    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 366          |                      PHY_TABLE_SCAN                    | t1(index_mck_id)                           | 1     | 267    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 367          |                  PHY_VEC_TABLE_SCAN                    | t2                                         | 1     | 17     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 368          |                 PHY_TABLE_SCAN                         | t3(torder_ix_area_id)                      | 1465  | 5765   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:1464, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 369          |                PHY_TABLE_SCAN                          | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 370          |               PHY_TABLE_SCAN                           | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 371          |              PHY_TABLE_SCAN                            | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 372          |           PHY_VEC_MATERIAL                             | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 373          |            PHY_PX_FIFO_COORD                           | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 374          |             PHY_PX_REDUCE_TRANSMIT                     | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 375          |              PHY_VEC_TABLE_SCAN                        | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 376          |         PHY_VEC_HASH_GROUP_BY                          | NULL                                       | 203   | 141949 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 377          |          PHY_VEC_SUBPLAN_SCAN                          | NULL                                       | 203   | 141039 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 378          |           PHY_MERGE_UNION                              | NULL                                       | 203   | 141039 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 379          |            PHY_VEC_HASH_GROUP_BY                       | NULL                                       | 203   | 122200 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 380          |             PHY_VEC_HASH_JOIN                          | NULL                                       | 405   | 120999 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 381          |              PHY_PX_FIFO_COORD                         | NULL                                       | 328   | 1114   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 382          |               PHY_PX_REDUCE_TRANSMIT                   | NULL                                       | 328   | 788    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 383          |                PHY_VEC_TABLE_SCAN                      | sysc                                       | 328   | 55     | table_rows:655, physical_range_rows:655, logical_range_rows:655, index_back_rows:0, output_rows:327, avaiable_index_name[t_sys_config], estimation info[table_id:501959, (table_type:10, version:-1--1--1, logical_rc:655, physical_rc:655)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 384          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 405   | 119738 | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 385          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 307   | 45240  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 386          |                PHY_NESTED_LOOP_JOIN                    | NULL                                       | 307   | 40310  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 387          |                 PHY_VEC_HASH_JOIN                      | NULL                                       | 307   | 35380  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 388          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 307   | 29785  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 389          |                   PHY_VEC_HASH_JOIN                    | NULL                                       | 307   | 20960  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 390          |                    PHY_VEC_TABLE_SCAN                  | t36                                        | 1268  | 57     | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], estimation info[table_id:501168, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 391          |                    PHY_VEC_HASH_JOIN                   | NULL                                       | 303   | 20616  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 392          |                     PHY_VEC_TABLE_SCAN                 | la                                         | 2     | 2      | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 393          |                     PHY_VEC_HASH_JOIN                  | NULL                                       | 303   | 20579  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 394          |                      PHY_VEC_TABLE_SCAN                | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 395          |                      PHY_NESTED_LOOP_JOIN              | NULL                                       | 303   | 20551  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 396          |                       PHY_VEC_HASH_JOIN                | NULL                                       | 303   | 15679  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 397          |                        PHY_VEC_TABLE_SCAN              | t40                                        | 1     | 2      | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 398          |                        PHY_NESTED_LOOP_JOIN            | NULL                                       | 303   | 15642  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 24         | 399          |                         PHY_NESTED_LOOP_JOIN           | NULL                                       | 237   | 7651   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 400          |                          PHY_PX_FIFO_COORD             | NULL                                       | 237   | 7644   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 401          |                           PHY_PX_REDUCE_TRANSMIT       | NULL                                       | 237   | 7051   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 402          |                            PHY_VEC_HASH_JOIN           | NULL                                       | 237   | 5715   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 403          |                             PHY_VEC_TABLE_SCAN         | t11                                        | 320   | 16     | table_rows:320, physical_range_rows:320, logical_range_rows:320, index_back_rows:0, output_rows:320, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username], estimation info[table_id:501933, (table_type:10, version:-1--1--1, logical_rc:320, physical_rc:320)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 404          |                             PHY_TABLE_SCAN             | t3(torder_ix_area_id)                      | 237   | 5594   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:236, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 405          |                          PHY_VEC_MATERIAL              | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 406          |                           PHY_PX_FIFO_COORD            | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 407          |                            PHY_PX_REDUCE_TRANSMIT      | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 408          |                             PHY_VEC_TABLE_SCAN         | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 24         | 409          |                         PHY_TABLE_SCAN                 | t2(index_orderId)                          | 2     | 32     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 410          |                       PHY_TABLE_SCAN                   | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 411          |                   PHY_TABLE_SCAN                       | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 412          |                  PHY_VEC_TABLE_SCAN                    | t16                                        | 37334 | 1828   | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:37334, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 413          |                 PHY_TABLE_SCAN                         | vpcc                                       | 1     | 15     | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 414          |                PHY_TABLE_SCAN                          | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 415          |               PHY_TABLE_SCAN                           | t1(tproductstockdetail_ix_order_detail_id) | 2     | 242    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 416          |            PHY_VEC_HASH_GROUP_BY                       | NULL                                       | 1     | 18838  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 417          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 18836  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 418          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 1     | 18820  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 419          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 1     | 18577  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 420          |                PHY_NESTED_LOOP_JOIN                    | NULL                                       | 1     | 18548  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 421          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 18521  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 422          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 18494  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 423          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 18467  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 424          |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1     | 18451  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 425          |                     PHY_VEC_MERGE_JOIN                 | NULL                                       | 1     | 18434  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 426          |                      PHY_VEC_TABLE_SCAN                | la                                         | 2     | 2      | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 427          |                      PHY_SORT                          | NULL                                       | 1     | 18432  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 428          |                       PHY_VEC_MERGE_JOIN               | NULL                                       | 1     | 18432  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 429          |                        PHY_VEC_TABLE_SCAN              | t40                                        | 1     | 2      | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 23         | 430          |                        PHY_SORT                        | NULL                                       | 1     | 18430  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 24         | 431          |                         PHY_VEC_HASH_JOIN              | NULL                                       | 1     | 18430  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 432          |                          PHY_VEC_TABLE_SCAN            | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 25         | 433          |                          PHY_NESTED_LOOP_JOIN          | NULL                                       | 1     | 18427  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 434          |                           PHY_NESTED_LOOP_JOIN         | NULL                                       | 1     | 18411  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 435          |                            PHY_PX_FIFO_COORD           | NULL                                       | 1     | 18411  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 436          |                             PHY_PX_REDUCE_TRANSMIT     | NULL                                       | 1     | 18409  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 29         | 437          |                              PHY_VEC_HASH_JOIN         | NULL                                       | 1     | 18404  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 30         | 438          |                               PHY_TABLE_SCAN           | t3(torder_ix_area_id)                      | 228   | 5415   | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:227, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 30         | 439          |                               PHY_NESTED_LOOP_JOIN     | NULL                                       | 375   | 12819  | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 31         | 440          |                                PHY_VEC_HASH_JOIN       | NULL                                       | 375   | 6783   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 32         | 441          |                                 PHY_TABLE_SCAN         | t7(treturn_ix_check2_time)                 | 341   | 1719   | table_rows:15920, physical_range_rows:547, logical_range_rows:547, index_back_rows:547, output_rows:340, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:547, physical_rc:547)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| 1006      | 10.1.250.157 | 2882     | 11150   | 32         | 442          |                                 PHY_VEC_SUBPLAN_SCAN   | NULL                                       | 5499  | 4462   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 33         | 443          |                                  PHY_VEC_HASH_GROUP_BY | NULL                                       | 5499  | 4447   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 34         | 444          |                                   PHY_VEC_TABLE_SCAN   | t_return_detail                            | 5499  | 1733   | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:5498, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_mkc_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 31         | 445          |                                PHY_TABLE_SCAN          | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 27         | 446          |                            PHY_VEC_MATERIAL            | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 28         | 447          |                             PHY_PX_FIFO_COORD          | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 29         | 448          |                              PHY_PX_REDUCE_TRANSMIT    | NULL                                       | 1     | 7      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 30         | 449          |                               PHY_VEC_TABLE_SCAN       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 26         | 450          |                           PHY_TABLE_SCAN               | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 451          |                     PHY_TABLE_SCAN                     | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 452          |                    PHY_TABLE_SCAN                      | vpcc                                       | 1     | 15     | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 453          |                   PHY_TABLE_SCAN                       | t16(index_orderDetailId)                   | 1     | 26     | table_rows:37334, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderDetailId,t_operator_business], pruned_index_name[t_operator_business]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 454          |                  PHY_TABLE_SCAN                        | t11(un_idx_special_user_id)                | 1     | 26     | table_rows:320, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username,t_special_user]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 455          |                 PHY_TABLE_SCAN                         | t36(idx_order_id)                          | 2     | 26     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], unstable_index_name[t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 456          |                PHY_TABLE_SCAN                          | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 457          |               PHY_TABLE_SCAN                           | t1(tproductstockdetail_ix_order_detail_id) | 2     | 242    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 458          |              PHY_TABLE_SCAN                            | sysc                                       | 1     | 15     | table_rows:655, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[t_sys_config]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 459          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 4978   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 460          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 4962   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 461          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 4933   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 462          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 4933   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 463          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 4917   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 464          |              PHY_NESTED_LOOP_JOIN                      | NULL                                       | 1     | 4890   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 465          |               PHY_NESTED_LOOP_JOIN                     | NULL                                       | 1     | 4736   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 466          |                PHY_VEC_HASH_JOIN                       | NULL                                       | 3     | 4673   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 467          |                 PHY_VEC_TABLE_SCAN                     | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 468          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 3     | 4670   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 469          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 3     | 4633   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 470          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 31    | 4140   | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 471          |                    PHY_VEC_TABLE_SCAN                  | b                                          | 31    | 3646   | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:30, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 472          |                    PHY_TABLE_SCAN                      | a                                          | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 473          |                   PHY_TABLE_SCAN                       | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 474          |                  PHY_TABLE_SCAN                        | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 475          |                PHY_TABLE_SCAN                          | c(torder_ix_order_id)                      | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 476          |               PHY_TABLE_SCAN                           | t1(tproductstockdetail_ix_order_detail_id) | 2     | 153    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 477          |              PHY_TABLE_SCAN                            | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 478          |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 479          |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 480          |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 481          |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 482          |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 483          |           PHY_TABLE_SCAN                               | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 484          |          PHY_TABLE_SCAN                                | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 485          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 315    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 486          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 299    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 487          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 270    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 488          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 270    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 489          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 254    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 490          |              PHY_VEC_HASH_JOIN                         | NULL                                       | 1     | 100    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 491          |               PHY_PX_FIFO_COORD                        | NULL                                       | 1     | 98     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 492          |                PHY_PX_REDUCE_TRANSMIT                  | NULL                                       | 1     | 98     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 493          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 98     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 494          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 81     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 495          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 54     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 496          |                    PHY_NESTED_LOOP_JOIN                | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 497          |                     PHY_TABLE_SCAN                     | t7(treturn_ix_return_type)                 | 1     | 8      | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 498          |                     PHY_TABLE_SCAN                     | t6(idx_return_detail_return_id)            | 1     | 29     | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], unstable_index_name[t_return_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 499          |                    PHY_TABLE_SCAN                      | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 500          |                   PHY_TABLE_SCAN                       | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 501          |                  PHY_TABLE_SCAN                        | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 502          |               PHY_VEC_TABLE_SCAN                       | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 503          |              PHY_TABLE_SCAN                            | t1(tproductstockdetail_ix_order_detail_id) | 2     | 153    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 504          |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 505          |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 506          |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 507          |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 508          |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 509          |           PHY_TABLE_SCAN                               | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 510          |          PHY_TABLE_SCAN                                | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 8          | 511          |         PHY_NESTED_LOOP_JOIN                           | NULL                                       | 1     | 251    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 512          |          PHY_NESTED_LOOP_JOIN                          | NULL                                       | 1     | 235    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 513          |           PHY_NESTED_LOOP_JOIN                         | NULL                                       | 1     | 206    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 514          |            PHY_NESTED_LOOP_JOIN                        | NULL                                       | 1     | 206    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 515          |             PHY_NESTED_LOOP_JOIN                       | NULL                                       | 1     | 190    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 516          |              PHY_VEC_HASH_JOIN                         | NULL                                       | 1     | 163    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 517          |               PHY_PX_FIFO_COORD                        | NULL                                       | 1     | 161    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 15         | 518          |                PHY_PX_REDUCE_TRANSMIT                  | NULL                                       | 1     | 161    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 16         | 519          |                 PHY_NESTED_LOOP_JOIN                   | NULL                                       | 1     | 160    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 520          |                  PHY_NESTED_LOOP_JOIN                  | NULL                                       | 1     | 144    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 521          |                   PHY_NESTED_LOOP_JOIN                 | NULL                                       | 1     | 128    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 522          |                    PHY_PX_FIFO_RECEIVE                 | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 523          |                     PHY_PX_DIST_TRANSMIT               | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 21         | 524          |                      PHY_NESTED_LOOP_JOIN              | NULL                                       | 1     | 38     | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 525          |                       PHY_TABLE_SCAN                   | t7(treturn_ix_return_type)                 | 1     | 8      | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 22         | 526          |                       PHY_TABLE_SCAN                   | t6(idx_return_detail_return_id)            | 2     | 29     | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_mkc_id], unstable_index_name[t_return_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| 1006      | 10.1.250.157 | 2882     | 11150   | 19         | 527          |                    PHY_VEC_GRANULE_ITERATOR            | NULL                                       | 1     | 266    | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 20         | 528          |                     PHY_TABLE_SCAN                     | t1(index_mck_id)                           | 1     | 266    | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 18         | 529          |                   PHY_TABLE_SCAN                       | t2                                         | 1     | 15     | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 17         | 530          |                  PHY_TABLE_SCAN                        | t4                                         | 1     | 15     | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 531          |               PHY_VEC_TABLE_SCAN                       | pl                                         | 2     | 2      | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 532          |              PHY_TABLE_SCAN                            | t3(torder_ix_order_id)                     | 1     | 26     | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 533          |             PHY_TABLE_SCAN                             | t5                                         | 1     | 15     | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| 1006      | 10.1.250.157 | 2882     | 11150   | 11         | 534          |            PHY_VEC_MATERIAL                            | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 12         | 535          |             PHY_PX_FIFO_COORD                          | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 13         | 536          |              PHY_PX_REDUCE_TRANSMIT                    | NULL                                       | 1     | 6      | NULL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| 1006      | 10.1.250.157 | 2882     | 11150   | 14         | 537          |               PHY_VEC_TABLE_SCAN                       | t8                                         | 1     | 6      | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| 1006      | 10.1.250.157 | 2882     | 11150   | 10         | 538          |           PHY_TABLE_SCAN                               | t17(IDX_BIND_DETAIL_ID)                    | 1     | 28     | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| 1006      | 10.1.250.157 | 2882     | 11150   | 9          | 539          |          PHY_TABLE_SCAN                                | t36(idx_order_id)                          | 2     | 15     | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
+-----------+--------------+----------+---------+------------+--------------+--------------------------------------------------------+--------------------------------------------+-------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

SCHEMA 信息

SQL_AUDIT 信息

SQL_PLAN_MONITOR DFO 级调度时序汇总

调度时序图

数据时序图

SQL_PLAN_MONITOR SQC 级汇总

Goto 算子优先 Goto 机器优先

算子优先视图

机器优先视图

SQL_PLAN_MONITOR 详情

Goto 算子优先 Goto 线程优先

算子优先视图

线程优先视图

本报告在租户下使用的 SQL

DFO 级
select
  AVG(ROWS) EST_ROWS, /*0*/
  plan_monitor.PLAN_DEPTH PLAN_DEPTH,
  plan_monitor.PLAN_LINE_ID PLAN_LINE_ID,
  PLAN_OPERATION,
  COUNT(*) PARALLEL,
  MIN(FIRST_REFRESH_TIME) MIN_FIRST_REFRESH_TIME,/*5*/
  MAX(LAST_REFRESH_TIME) MAX_LAST_REFRESH_TIME,
  MIN(FIRST_CHANGE_TIME) MIN_FIRST_CHANGE_TIME,
  MAX(LAST_CHANGE_TIME) MAX_LAST_CHANGE_TIME,
  UNIX_TIMESTAMP(MIN(FIRST_REFRESH_TIME)) MIN_FIRST_REFRESH_TS,
  UNIX_TIMESTAMP(MAX(LAST_REFRESH_TIME)) MAX_LAST_REFRESH_TS, /*10*/
  UNIX_TIMESTAMP(MIN(FIRST_CHANGE_TIME)) MIN_FIRST_CHANGE_TS,
  UNIX_TIMESTAMP(MAX(LAST_CHANGE_TIME)) MAX_LAST_CHANGE_TS,
  AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) AVG_REFRESH_TIME,
  MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MAX_REFRESH_TIME,
  MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MIN_REFRESH_TIME, /*15 */
  AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) AVG_CHANGE_TIME,
  MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MAX_CHANGE_TIME,
  MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MIN_CHANGE_TIME,
  SUM(OUTPUT_ROWS) TOTAL_OUTPUT_ROWS,
  (MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) - MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME))) / MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)+0.00000001) SKEWNESS,
  SUM(STARTS) TOTAL_RESCAN_TIMES,/* 20 */
  MAX(OTHERSTAT_1_ID) OTHERSTAT_1_ID,
  SUM(OTHERSTAT_1_VALUE) SUM_STAT_1,
  MAX(OTHERSTAT_1_VALUE) MAX_STAT_1,
  MIN(OTHERSTAT_1_VALUE) MIN_STAT_1,
  AVG(OTHERSTAT_1_VALUE) AVG_STAT_1, /* 25 */
  MAX(OTHERSTAT_2_ID) OTHERSTAT_2_ID,
  SUM(OTHERSTAT_2_VALUE) SUM_STAT_2,
  MAX(OTHERSTAT_2_VALUE) MAX_STAT_2,
  MIN(OTHERSTAT_2_VALUE) MIN_STAT_2,
  AVG(OTHERSTAT_2_VALUE) AVG_STAT_2, /* 30 */
  MAX(OTHERSTAT_3_ID) OTHERSTAT_3_ID,
  SUM(OTHERSTAT_3_VALUE) SUM_STAT_3,
  MAX(OTHERSTAT_3_VALUE) MAX_STAT_3,
  MIN(OTHERSTAT_3_VALUE) MIN_STAT_3,
  AVG(OTHERSTAT_3_VALUE) AVG_STAT_3, /* 35 */
  MAX(OTHERSTAT_4_ID) OTHERSTAT_4_ID,
  SUM(OTHERSTAT_4_VALUE) SUM_STAT_4,
  MAX(OTHERSTAT_4_VALUE) MAX_STAT_4,
  MIN(OTHERSTAT_4_VALUE) MIN_STAT_4,
  AVG(OTHERSTAT_4_VALUE) AVG_STAT_4, /* 40 */
  MAX(OTHERSTAT_5_ID) OTHERSTAT_5_ID,
  SUM(OTHERSTAT_5_VALUE) SUM_STAT_5,
  MAX(OTHERSTAT_5_VALUE) MAX_STAT_5,
  MIN(OTHERSTAT_5_VALUE) MIN_STAT_5,
  AVG(OTHERSTAT_5_VALUE) AVG_STAT_5, /* 45*/
  MAX(OTHERSTAT_6_ID) OTHERSTAT_6_ID,
  SUM(OTHERSTAT_6_VALUE) SUM_STAT_6,
  MAX(OTHERSTAT_6_VALUE) MAX_STAT_6,
  MIN(OTHERSTAT_6_VALUE) MIN_STAT_6,
  AVG(OTHERSTAT_6_VALUE) AVG_STAT_6 /* 50 */,
  TRUNCATE(AVG(DB_TIME)/1000000000.0/2.5, 4) MY_DB_TIME,
  TRUNCATE(AVG(DB_TIME-USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_CPU_TIME,
  TRUNCATE(AVG(USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_IO_TIME
from
(
  select * FROM oceanbase.gv$sql_plan_monitor
where
  trace_id = 'YB420A01FA9D-000626C2C73BF28D-0-0'
) plan_monitor
LEFT JOIN
(
 SELECT ROWS, PLAN_LINE_ID FROM oceanbase.gv$ob_plan_cache_plan_explain WHERE plan_id = 11150 AND tenant_id = 1006 and svr_ip = '10.1.250.157'  and svr_port = 2882
) plan_explain
ON
  plan_monitor.PLAN_LINE_ID = plan_explain.PLAN_LINE_ID
GROUP BY
  plan_monitor.PLAN_LINE_ID, plan_monitor.PLAN_OPERATION
ORDER BY
  plan_monitor.PLAN_LINE_ID ASC;
    

机器级
select
  PLAN_DEPTH,
  PLAN_LINE_ID,
  PLAN_OPERATION,
  COUNT(*) PARALLEL,
  MIN(FIRST_REFRESH_TIME) MIN_FIRST_REFRESH_TIME,
  MAX(LAST_REFRESH_TIME) MAX_LAST_REFRESH_TIME,
  MIN(FIRST_CHANGE_TIME) MIN_FIRST_CHANGE_TIME,
  MAX(LAST_CHANGE_TIME) MAX_LAST_CHANGE_TIME,
  UNIX_TIMESTAMP(MIN(FIRST_REFRESH_TIME)) MIN_FIRST_REFRESH_TS,
  UNIX_TIMESTAMP(MAX(LAST_REFRESH_TIME)) MAX_LAST_REFRESH_TS,
  UNIX_TIMESTAMP(MIN(FIRST_CHANGE_TIME)) MIN_FIRST_CHANGE_TS,
  UNIX_TIMESTAMP(MAX(LAST_CHANGE_TIME)) MAX_LAST_CHANGE_TS,
  AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) AVG_REFRESH_TIME,
  MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MAX_REFRESH_TIME,
  MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MIN_REFRESH_TIME,
  AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) AVG_CHANGE_TIME,
  MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MAX_CHANGE_TIME,
  MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MIN_CHANGE_TIME,
  SUM(OUTPUT_ROWS) TOTAL_OUTPUT_ROWS,
  (MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) - MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME))) / MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) SKEWNESS,
  SUM(STARTS) TOTAL_RESCAN_TIMES,
  SVR_IP,
  SVR_PORT,
  MAX(OTHERSTAT_1_VALUE) MAX_STAT_1,
  MIN(OTHERSTAT_1_VALUE) MIN_STAT_1,
  AVG(OTHERSTAT_1_VALUE) AVG_STAT_1,
  MAX(OTHERSTAT_2_VALUE) MAX_STAT_2,
  MIN(OTHERSTAT_2_VALUE) MIN_STAT_2,
  AVG(OTHERSTAT_2_VALUE) AVG_STAT_2,
  MAX(OTHERSTAT_3_VALUE) MAX_STAT_3,
  MIN(OTHERSTAT_3_VALUE) MIN_STAT_3,
  AVG(OTHERSTAT_3_VALUE) AVG_STAT_3,
  MAX(OTHERSTAT_4_VALUE) MAX_STAT_4,
  MIN(OTHERSTAT_4_VALUE) MIN_STAT_4,
  AVG(OTHERSTAT_4_VALUE) AVG_STAT_4,
  MAX(OTHERSTAT_5_VALUE) MAX_STAT_5,
  MIN(OTHERSTAT_5_VALUE) MIN_STAT_5,
  AVG(OTHERSTAT_5_VALUE) AVG_STAT_5,
  MAX(OTHERSTAT_6_VALUE) MAX_STAT_6,
  MIN(OTHERSTAT_6_VALUE) MIN_STAT_6,
  AVG(OTHERSTAT_6_VALUE) AVG_STAT_6,
  TRUNCATE(AVG(DB_TIME)/1000000000.0/2.5, 4) MY_DB_TIME,
  TRUNCATE(AVG(DB_TIME-USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_CPU_TIME,
  TRUNCATE(AVG(USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_IO_TIME
from
  oceanbase.gv$sql_plan_monitor
where
  trace_id = 'YB420A01FA9D-000626C2C73BF28D-0-0'
GROUP BY
  PLAN_LINE_ID,PLAN_OPERATION,SVR_IP,SVR_PORT
ORDER BY
  PLAN_LINE_ID ASC, MAX_CHANGE_TIME ASC, SVR_IP, SVR_PORT; 
    

线程级
select
  PLAN_DEPTH,/*0*/
  SVR_IP,
  SVR_PORT,
  PROCESS_NAME,
  PLAN_LINE_ID,
  PLAN_OPERATION, /*5*/
  OUTPUT_ROWS,
  STARTS RESCAN_TIMES,
  FIRST_REFRESH_TIME,
  LAST_REFRESH_TIME,
  FIRST_CHANGE_TIME,/*10*/
  LAST_CHANGE_TIME,
  UNIX_TIMESTAMP(FIRST_REFRESH_TIME) FIRST_REFRESH_TS,
  UNIX_TIMESTAMP(LAST_REFRESH_TIME) LAST_REFRESH_TS,
  UNIX_TIMESTAMP(LAST_REFRESH_TIME) - UNIX_TIMESTAMP(FIRST_REFRESH_TIME) REFRESH_TS,
  UNIX_TIMESTAMP(FIRST_CHANGE_TIME) FIRST_CHANGE_TS, /*15*/
  UNIX_TIMESTAMP(LAST_CHANGE_TIME) LAST_CHANGE_TS,
  UNIX_TIMESTAMP(LAST_CHANGE_TIME) - UNIX_TIMESTAMP(FIRST_CHANGE_TIME) CHANGE_TS,
  OTHERSTAT_1_ID,
  OTHERSTAT_1_VALUE,
  OTHERSTAT_2_ID, /*20*/
  OTHERSTAT_2_VALUE,
  OTHERSTAT_3_ID,
  OTHERSTAT_3_VALUE,
  OTHERSTAT_4_ID,
  OTHERSTAT_4_VALUE, /*25*/
  OTHERSTAT_5_ID,
  OTHERSTAT_5_VALUE,
  OTHERSTAT_6_ID,
  OTHERSTAT_6_VALUE,
  TRUNCATE((DB_TIME)/1000000000.0/2.5, 4) MY_DB_TIME,
  TRUNCATE((DB_TIME-USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_CPU_TIME,
  TRUNCATE((USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_IO_TIME
from
  oceanbase.gv$sql_plan_monitor
where
    trace_id = 'YB420A01FA9D-000626C2C73BF28D-0-0'
ORDER BY
  PLAN_LINE_ID ASC, SVR_IP, SVR_PORT, CHANGE_TS, PROCESS_NAME ASC;
    

报告生成时间: 2024-11-21 11:05:36