├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── AdventureWorks Entity Relationship Diagram.pdf ├── AdventureWorks.db ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── create_database.sh ├── create_tables.sql ├── csv ├── DimCurrency.csv ├── DimCustomer.csv ├── DimDate.csv ├── DimDepartmentGroup.csv ├── DimEmployee.csv ├── DimGeography.csv ├── DimOrganization.csv ├── DimProduct.csv ├── DimProductCategory.csv ├── DimProductSubcategory.csv ├── DimPromotion.csv ├── DimReseller.csv ├── DimSalesReason.csv ├── DimSalesTerritory.csv ├── FactCurrencyRate.csv ├── FactInternetSales.csv ├── FactInternetSalesReason.csv ├── FactResellerSales.csv └── FactSurveyResponse.csv ├── help_files ├── Chapter 1 │ └── Chapter1.txt ├── Chapter 2 │ └── Chapter 2.4.1.sql ├── Chapter 3 │ ├── 3.2.2.sql │ └── create_views_ch3.sql └── Chapter 4 │ └── 4.4.1.sql └── solutions ├── Chapter 1 ├── Solution 1.3.txt ├── adventureworks_docs.html ├── adventureworks_docs_v2.html └── create_documentation.sh ├── Chapter 2 ├── Chapter 2.3.2.sql ├── Chapter 2.3.3.sql ├── Chapter 2.3.4.sql ├── Chapter 2.3.5.sql ├── Chapter 2.3.sql └── Chapter 2.6.1.sql ├── Chapter 3 ├── 3.3.1.sql ├── 3.3.2.sql ├── 3.3.3.sql └── 3.5.1.sql ├── Chapter 4 ├── 4.3.1.sql ├── 4.3.2.sql ├── 4.3.3.sql └── 4.5.1.sql └── Chapter 5 └── 5.3.1.sql /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AdventureWorks Entity Relationship Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/AdventureWorks Entity Relationship Diagram.pdf -------------------------------------------------------------------------------- /AdventureWorks.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/AdventureWorks.db -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/README.md -------------------------------------------------------------------------------- /create_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/create_database.sh -------------------------------------------------------------------------------- /create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/create_tables.sql -------------------------------------------------------------------------------- /csv/DimCurrency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimCurrency.csv -------------------------------------------------------------------------------- /csv/DimCustomer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimCustomer.csv -------------------------------------------------------------------------------- /csv/DimDate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimDate.csv -------------------------------------------------------------------------------- /csv/DimDepartmentGroup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimDepartmentGroup.csv -------------------------------------------------------------------------------- /csv/DimEmployee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimEmployee.csv -------------------------------------------------------------------------------- /csv/DimGeography.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimGeography.csv -------------------------------------------------------------------------------- /csv/DimOrganization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimOrganization.csv -------------------------------------------------------------------------------- /csv/DimProduct.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimProduct.csv -------------------------------------------------------------------------------- /csv/DimProductCategory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimProductCategory.csv -------------------------------------------------------------------------------- /csv/DimProductSubcategory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimProductSubcategory.csv -------------------------------------------------------------------------------- /csv/DimPromotion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimPromotion.csv -------------------------------------------------------------------------------- /csv/DimReseller.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimReseller.csv -------------------------------------------------------------------------------- /csv/DimSalesReason.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimSalesReason.csv -------------------------------------------------------------------------------- /csv/DimSalesTerritory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/DimSalesTerritory.csv -------------------------------------------------------------------------------- /csv/FactCurrencyRate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/FactCurrencyRate.csv -------------------------------------------------------------------------------- /csv/FactInternetSales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/FactInternetSales.csv -------------------------------------------------------------------------------- /csv/FactInternetSalesReason.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/FactInternetSalesReason.csv -------------------------------------------------------------------------------- /csv/FactResellerSales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/FactResellerSales.csv -------------------------------------------------------------------------------- /csv/FactSurveyResponse.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/csv/FactSurveyResponse.csv -------------------------------------------------------------------------------- /help_files/Chapter 1/Chapter1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/help_files/Chapter 1/Chapter1.txt -------------------------------------------------------------------------------- /help_files/Chapter 2/Chapter 2.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/help_files/Chapter 2/Chapter 2.4.1.sql -------------------------------------------------------------------------------- /help_files/Chapter 3/3.2.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/help_files/Chapter 3/3.2.2.sql -------------------------------------------------------------------------------- /help_files/Chapter 3/create_views_ch3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/help_files/Chapter 3/create_views_ch3.sql -------------------------------------------------------------------------------- /help_files/Chapter 4/4.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/help_files/Chapter 4/4.4.1.sql -------------------------------------------------------------------------------- /solutions/Chapter 1/Solution 1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 1/Solution 1.3.txt -------------------------------------------------------------------------------- /solutions/Chapter 1/adventureworks_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 1/adventureworks_docs.html -------------------------------------------------------------------------------- /solutions/Chapter 1/adventureworks_docs_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 1/adventureworks_docs_v2.html -------------------------------------------------------------------------------- /solutions/Chapter 1/create_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 1/create_documentation.sh -------------------------------------------------------------------------------- /solutions/Chapter 2/Chapter 2.3.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 2/Chapter 2.3.2.sql -------------------------------------------------------------------------------- /solutions/Chapter 2/Chapter 2.3.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 2/Chapter 2.3.3.sql -------------------------------------------------------------------------------- /solutions/Chapter 2/Chapter 2.3.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 2/Chapter 2.3.4.sql -------------------------------------------------------------------------------- /solutions/Chapter 2/Chapter 2.3.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 2/Chapter 2.3.5.sql -------------------------------------------------------------------------------- /solutions/Chapter 2/Chapter 2.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 2/Chapter 2.3.sql -------------------------------------------------------------------------------- /solutions/Chapter 2/Chapter 2.6.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 2/Chapter 2.6.1.sql -------------------------------------------------------------------------------- /solutions/Chapter 3/3.3.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 3/3.3.1.sql -------------------------------------------------------------------------------- /solutions/Chapter 3/3.3.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 3/3.3.2.sql -------------------------------------------------------------------------------- /solutions/Chapter 3/3.3.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 3/3.3.3.sql -------------------------------------------------------------------------------- /solutions/Chapter 3/3.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 3/3.5.1.sql -------------------------------------------------------------------------------- /solutions/Chapter 4/4.3.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 4/4.3.1.sql -------------------------------------------------------------------------------- /solutions/Chapter 4/4.3.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 4/4.3.2.sql -------------------------------------------------------------------------------- /solutions/Chapter 4/4.3.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 4/4.3.3.sql -------------------------------------------------------------------------------- /solutions/Chapter 4/4.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/practice-it-sql-joins-3085459/HEAD/solutions/Chapter 4/4.5.1.sql -------------------------------------------------------------------------------- /solutions/Chapter 5/5.3.1.sql: -------------------------------------------------------------------------------- 1 | -- SQLite 2 | Select * 3 | from DimCurrency CROSS JOIN DimDepartmentGroup; --------------------------------------------------------------------------------