
Ultimate access to all questions.
A data engineer has a Python notebook in Databricks, but they need to use SQL to accomplish a specific task within a cell. They still want all of the other cells to use Python without making any changes to those cells.
Which of the following describes how the data engineer can use SQL within a cell of their Python notebook?
A
It is not possible to use SQL in a Python notebook
B
They can attach the cell to a SQL endpoint rather than a Databricks cluster
C
They can simply write SQL syntax in the cell
D
They can add %sql to the first line of the cell
E
They can change the default language of the notebook to SQL
Explanation:
In Databricks notebooks, you can use different languages within the same notebook by using language magic commands. To use SQL in a Python notebook cell, you need to add %sql at the beginning of the cell. This tells Databricks to interpret that specific cell as SQL code while keeping other cells as Python.
Key points:
%sql to the first line of the cell enables SQL execution in that cell.This approach allows data engineers to mix languages within the same notebook, which is a powerful feature of Databricks notebooks for data engineering workflows.