Data Explorer で実行するクエリを見つけました。それは次のとおりです。
SELECT term, count(*) searches,
sum(case when search_result_id is not null then 1 else 0 end) clicks,
round(sum(case when search_result_id is not null then 1 else 0 end) * 100.0 / count(*), 1) as ctr
from search_logs
where created_at > current_timestamp - interval '30' day
group by term
order by count(*) desc
それで、最終的な最終的な質問は次のとおりです。Automation で、このクエリを実行し、結果をメール本文に投稿するのではなく、受信者に送信されるメールに添付された CSV に変換する方法はありますか?