Quotes help make search much faster. Example: "Practice Makes Perfect"

Tuesday, May 9, 2017

Codecademy SQL: Analyzing Business Metrics Exercise 3 of 14


select
  date(created_at),
  round(sum(price), 2) as daily_rev
from purchases
where refunded_at is not null
group by 1
order by 1;

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts