DRAG DROP You have a table named Sales that contains the following data.

You need to query the table to return the average sales amount day. The output must produce the following results.

How should you complete the query? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

It should be SELECT and then GROUP BY. You need SELECT to choose what columns/aggregations to show, and GROUP BY to aggregate averages by date. CREATE is a distractor here, that’s for table definitions not queries. I’m pretty sure this matches the needed output, but if anyone disagrees let me know.