Skip to content

treefroghj-dev/duckdb_project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

##queries:##

from zoomcamp_dbt.prod.monthly_revenue_per_locations
select
	count(1)
from zoomcamp_dbt.prod.monthly_revenue_per_locations
select
	pickup_zone,
  revenue_month,
  revenue_monthly_total_amount,
  service_type
where service_type == 'Green' and revenue_month >='2020-01-01' and revenue_month < '2021-01-01'
order by revenue_monthly_total_amount desc
limit 10
from zoomcamp_dbt.prod.monthly_revenue_per_locations
select
	service_type,
  sum(total_monthly_trips) as total_trips
where service_type == 'Green' and revenue_month >='2019-10-01' and revenue_month < '2019-11-01'
group by 1
from zoomcamp_dbt.prod.stg_fhv_tripdata
select
	count(*)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages