The code block shown below contains an error. The code block is intended to use SQL to return a new DataFrame containing column storeId and column managerName from a table created from DataFrame storesDF. Identify the error. Code block: ```python storesDF.createOrReplaceTempView("stores") storesDF.sql("SELECT storeId, managerName FROM stores") ``` | Databricks Certified Associate Developer for Apache Spark Quiz - LeetQuiz