このクエリを実行すると、COUNT 関数は「check_if_new_customer」フラグでフィルタリングされません。この記事を読みました: http://dev.mysql.com/tech-resources/articles/wizard/page4.htmlより正確な結果を得るために、場合によっては COUNT の代わりに SUM を使用できますが、それを試してみると、私は非常に異なるものを手に入れました.それは数の大幅な倍増を示しているようです. これは、その時点でカウントするのではなく、id フィールドにある UUID を合計しているためである可能性があると思います。既存の顧客と新規顧客のすべてをカウントするためにそこに何を入れることができるかについて何か提案はありますか?
SELECT
YEAR(so.date_entered),
so.technical_address_country,
so.technical_address_state,
COUNT(so.id) as all_sales,
COUNT(mf.id) as all_jobs,
SUM(so.total_value) as all_value,
COUNT(IF(so.check_if_new_customer=1,so.id,0)) as sales_order_new,
SUM(IF(so.check_if_new_customer = 1,so.total_value,0)) as total_value_new,
COUNT(IF(so.check_if_new_customer=1,mf.id,0)) as jobs_new,
COUNT(IF(so.check_if_new_customer=0,so.id,0)) as sales_order_existing,
SUM(IF(so.check_if_new_customer = 0,so.total_value,0)) as total_value_existing,
COUNT(IF(so.check_if_new_customer=0,mf.id,0)) as jobs_existing,
SUM(IF(so.check_if_new_customer=0,mf.id,0)) as jobs_existing_t
FROM
sugarcrm2.so_order so
LEFT JOIN
sugarcrm2.mf_job mf on so.id = mf.sales_order_id
WHERE
so.date_entered > "2011-10-30" AND
so.technical_address_country IS NOT NULL AND
so.technical_address_state IS NOT NULL AND
so.deleted = 0 AND
so.has_been_promoted = 1
GROUP BY
YEAR(so.date_entered),
so.technical_address_country,
so.technical_address_state
ORDER BY
so.technical_address_country, so.technical_address_state