Alright!!! It's time to do your setup your first database, if you go to the following link you'll be able to see a simple DBFiddle!
We've already setup some test tables and and put in some test data for you so there's no need to focus on that part!
We've also added some simple queries that will have a comment right next to the SELECT keyword, feel free to remove this comment (the part between the /* */).
The goal is to fill out the query like we just saw in the video:
If you want to check your answer you can check it here:
Some tips:
SELECT * FROM some_table => This returns all data from a table
SELECT col1, col2 FROM some_table => This col1 and col2 data from a table