You can complete the 4 assessment items for the Intermediate Module.
The Advanced Workshop is 'Choose Your Own Adventure.' You can choose to work through one of the options, or try all three. Have fun. 😀
Build a 'Fakeflix' database and use sql queries to analyze the dataset.
- Convert at least 30 rows of this csv file of movie data from its current format to a table with data using migrations and seeds.
- Use migrations and seeds to create a table with at least 15 users. Generate usernames with Faker.js, and make up data about how users watch movies.
- Use sql queries to analyze the dataset.
Discuss SQL with a facilitator or workshop participant
- Clearly phrase questions or problems you are having with SQL
- Create sample tables to illustrate a question
- Adapt solutions proposed by others
- Discuss ways to ensure against accidental data loss
- Describe security best practices
Write advanced SQL queries
- Write a query that uses a subquery as a filter
- Write a query using a Common Table Expression
- Write a query that self joins
- Write a query that uses
UNION