A data engineer is working with two tables. Each of these tables is displayed below in its entirety. **sales** ``` customer_id spend units a1 28.94 7 a3 874.1223 (not shown) a4 8.99 1 ``` **favorite_stores** ``` customer_id store_id a1 s1 a2 s1 a4 s2 ``` The data engineer runs the following query to join these tables together: ```sql SELECT sales.customer_id, sales.spend, favorite_stores.store_id FROM sales LEFT JOIN favorite_stores ON sales.customer_id = favorite_stores.customer_id; ``` | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz