├── .gitignore ├── README.md ├── assets ├── 8-week-sql-challenge.png ├── avatar.png ├── badges │ └── version-1.0.svg ├── dwd-banner.png ├── psql-for-data-analytics.png └── psql-super-quick-cheatsheet.png ├── content ├── postgresql-for-data-analytics.pdf └── postgresql-super-quick-cheatsheet.md └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/README.md -------------------------------------------------------------------------------- /assets/8-week-sql-challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/assets/8-week-sql-challenge.png -------------------------------------------------------------------------------- /assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/assets/avatar.png -------------------------------------------------------------------------------- /assets/badges/version-1.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/assets/badges/version-1.0.svg -------------------------------------------------------------------------------- /assets/dwd-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/assets/dwd-banner.png -------------------------------------------------------------------------------- /assets/psql-for-data-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/assets/psql-for-data-analytics.png -------------------------------------------------------------------------------- /assets/psql-super-quick-cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/assets/psql-super-quick-cheatsheet.png -------------------------------------------------------------------------------- /content/postgresql-for-data-analytics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/content/postgresql-for-data-analytics.pdf -------------------------------------------------------------------------------- /content/postgresql-super-quick-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/content/postgresql-super-quick-cheatsheet.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawithdanny/postgresql-for-data-analytics/HEAD/docker-compose.yml --------------------------------------------------------------------------------