You are working with a Spark SQL table `df_employees` that contains the following schema: ```text employee_id ARRAY<ARRAY<INT>>, name STRING, department STRING, salary DOUBLE ``` Each row in `employee_id` contains **multiple arrays of employee IDs** (for example: `[[101,102],[103,104]]`). Your task is to **convert the `employee_id` column into a single array of integers per row**, **without increasing the number of rows**, using Spark SQL. Which of the following queries correctly accomplishes this task? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz