私は2列のカウントを取得し、それらの合計を新しい列として実行したいと考えています。これどうやってするの?
私はこのクエリを書きましたが、これは間違った合計を返しています。
SELECT count(case when `status`='1' then 1 else 0 end) AS HOT,
count(case when `status`='5' then 1 end)
AS Special_Case,count(case when 1=1 then 1 end) AS TOTAL
FROM `tbl_customer_conversation` group by
date(`dt_added`),user_id