├── .gitattributes ├── 01. Introduction to databases └── Sec1.pdf ├── 02. SQL Theory ├── DDL.pdf ├── DML.pdf ├── Keywords.pdf └── TCL.pdf ├── 03. Basic Database Terminology ├── Relational-Schemas-Foreign-Key.pdf ├── Relational-Schemas-Primary-Key.pdf ├── Relational-Schemas-Unique-Key-and-Null-Values.pdf └── Relationships.pdf ├── 04. MySQL └── The-Client-Server-Model.pdf ├── 05. First Steps ├── Additional-Notes-on-Using-Tables.pdf ├── Creating-a-Database (1).pdf ├── Creating-a-Database.pdf ├── Creating-a-Table.pdf ├── Integers.pdf ├── Other-Useful-Data-Types.pdf ├── String-Data-Types.pdf └── Using-Tables.pdf ├── 06. MySQL Constraints ├── FOREIGN-KEY-Constraint (1).pdf ├── FOREIGN-KEY-Constraint.pdf ├── PRIMARY-KEY-Constraint.pdf └── sales-db.pdf ├── 08. Loading the 'Employees' database └── employees.sql ├── 09. The SQL Select Statement ├── SelectExercises.sql └── employees-db.pdf ├── 10. The SQL Insert Statement └── InsertExercises.sql ├── 11. The SQL Update Statement └── UpdateExercises.sql ├── 12. The SQL Delete Statement └── DeleteExercises.sql ├── 13. Aggregate Functions ├── COALESCE-Preamble.pdf └── FunctionsExercises.sql ├── 14. SQL Joins └── JoinsExercises.sql ├── 15. Subqueries └── SubqueryExercises.sql ├── 16. Self Join └── SelfJoinExercise.sql ├── 17. Views └── ViewsExercise.sql ├── PeoplesCertificateOfCompletion.pdf ├── README.md ├── SalesDatabase.pdf └── SalesDatabase.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/.gitattributes -------------------------------------------------------------------------------- /01. Introduction to databases/Sec1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/01. Introduction to databases/Sec1.pdf -------------------------------------------------------------------------------- /02. SQL Theory/DDL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/02. SQL Theory/DDL.pdf -------------------------------------------------------------------------------- /02. SQL Theory/DML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/02. SQL Theory/DML.pdf -------------------------------------------------------------------------------- /02. SQL Theory/Keywords.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/02. SQL Theory/Keywords.pdf -------------------------------------------------------------------------------- /02. SQL Theory/TCL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/02. SQL Theory/TCL.pdf -------------------------------------------------------------------------------- /03. Basic Database Terminology/Relational-Schemas-Foreign-Key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/03. Basic Database Terminology/Relational-Schemas-Foreign-Key.pdf -------------------------------------------------------------------------------- /03. Basic Database Terminology/Relational-Schemas-Primary-Key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/03. Basic Database Terminology/Relational-Schemas-Primary-Key.pdf -------------------------------------------------------------------------------- /03. Basic Database Terminology/Relational-Schemas-Unique-Key-and-Null-Values.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/03. Basic Database Terminology/Relational-Schemas-Unique-Key-and-Null-Values.pdf -------------------------------------------------------------------------------- /03. Basic Database Terminology/Relationships.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/03. Basic Database Terminology/Relationships.pdf -------------------------------------------------------------------------------- /04. MySQL/The-Client-Server-Model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/04. MySQL/The-Client-Server-Model.pdf -------------------------------------------------------------------------------- /05. First Steps/Additional-Notes-on-Using-Tables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Additional-Notes-on-Using-Tables.pdf -------------------------------------------------------------------------------- /05. First Steps/Creating-a-Database (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Creating-a-Database (1).pdf -------------------------------------------------------------------------------- /05. First Steps/Creating-a-Database.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Creating-a-Database.pdf -------------------------------------------------------------------------------- /05. First Steps/Creating-a-Table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Creating-a-Table.pdf -------------------------------------------------------------------------------- /05. First Steps/Integers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Integers.pdf -------------------------------------------------------------------------------- /05. First Steps/Other-Useful-Data-Types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Other-Useful-Data-Types.pdf -------------------------------------------------------------------------------- /05. First Steps/String-Data-Types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/String-Data-Types.pdf -------------------------------------------------------------------------------- /05. First Steps/Using-Tables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/05. First Steps/Using-Tables.pdf -------------------------------------------------------------------------------- /06. MySQL Constraints/FOREIGN-KEY-Constraint (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/06. MySQL Constraints/FOREIGN-KEY-Constraint (1).pdf -------------------------------------------------------------------------------- /06. MySQL Constraints/FOREIGN-KEY-Constraint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/06. MySQL Constraints/FOREIGN-KEY-Constraint.pdf -------------------------------------------------------------------------------- /06. MySQL Constraints/PRIMARY-KEY-Constraint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/06. MySQL Constraints/PRIMARY-KEY-Constraint.pdf -------------------------------------------------------------------------------- /06. MySQL Constraints/sales-db.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/06. MySQL Constraints/sales-db.pdf -------------------------------------------------------------------------------- /08. Loading the 'Employees' database/employees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/08. Loading the 'Employees' database/employees.sql -------------------------------------------------------------------------------- /09. The SQL Select Statement/SelectExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/09. The SQL Select Statement/SelectExercises.sql -------------------------------------------------------------------------------- /09. The SQL Select Statement/employees-db.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/09. The SQL Select Statement/employees-db.pdf -------------------------------------------------------------------------------- /10. The SQL Insert Statement/InsertExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/10. The SQL Insert Statement/InsertExercises.sql -------------------------------------------------------------------------------- /11. The SQL Update Statement/UpdateExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/11. The SQL Update Statement/UpdateExercises.sql -------------------------------------------------------------------------------- /12. The SQL Delete Statement/DeleteExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/12. The SQL Delete Statement/DeleteExercises.sql -------------------------------------------------------------------------------- /13. Aggregate Functions/COALESCE-Preamble.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/13. Aggregate Functions/COALESCE-Preamble.pdf -------------------------------------------------------------------------------- /13. Aggregate Functions/FunctionsExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/13. Aggregate Functions/FunctionsExercises.sql -------------------------------------------------------------------------------- /14. SQL Joins/JoinsExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/14. SQL Joins/JoinsExercises.sql -------------------------------------------------------------------------------- /15. Subqueries/SubqueryExercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/15. Subqueries/SubqueryExercises.sql -------------------------------------------------------------------------------- /16. Self Join/SelfJoinExercise.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/16. Self Join/SelfJoinExercise.sql -------------------------------------------------------------------------------- /17. Views/ViewsExercise.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/17. Views/ViewsExercise.sql -------------------------------------------------------------------------------- /PeoplesCertificateOfCompletion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/PeoplesCertificateOfCompletion.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/README.md -------------------------------------------------------------------------------- /SalesDatabase.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/SalesDatabase.pdf -------------------------------------------------------------------------------- /SalesDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLPeoples/MySQL-for-Data-Analytics-and-Business-Intelligence/HEAD/SalesDatabase.sql --------------------------------------------------------------------------------