SELECT a."Name" 'Account Name', SUM(case when (o."FiscalQuarter"=1 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q1 Amount', SUM(case when (o."FiscalQuarter"=2 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q2 Amount', SUM(case when (o."FiscalQuarter"=3 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q3 Amount', SUM(case when (o."FiscalQuarter"=4 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q4 Amount', SUM(case when (o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q1-Q4 Amount SUM' FROM "Opportunity" o, "Account" a WHERE o."IsWon"=true AND o."IsClosed"=true AND o."AccountId"= a."Id" GROUP BY o."AccountId" ORDER BY SUM(o."Amount") DESC
Skyvia Query allows you to run SQL queries against databases and cloud applications from web browser. Access and manage your data from anywhere, build reports, arrange your data in the most informative way and simplify your decision-making process easily!