JOIN Questions Part I
JOIN Questions Part I Question Mania Now that you have been introduced to JOINs, let's practice to build your skills and comfort with this new tool. Below I have provided the ERD and a bunch of questions. The solutions for the questions can be found on the next concept for you to check your answers or just in case you get stuck! I recommend testing your queries with the environment below, and then saving them to a file. Then compare your file to my solutions on the next concept! Questions and Solutions Provide a table for all the for all web_events associated with account name of Walmart . There should be three columns. Be sure to include the primary_poc , time of the event, and the channel for each event. Additionally, you might choose to add a fourth column to assure only Walmart events were chosen. SELECT a . primary_poc , w . occurred_at , w . channel , a . name FROM web_events w JOIN accounts a ON ...