A data engineer has to create a table named `new_employees_table` in Databricks, utilizing data from their organization’s existing SQLite database. The following command is executed: `CREATE TABLE new_employees_table USING _____ OPTIONS ( url '<jdbc_url>', dbtable '<table_name>', user '<username>', password '<password>' ) AS SELECT * FROM employees_table_vw`. Which line of code correctly fills in the blank to allow the successful creation of the table? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz