
Databricks Certified Data Engineer - Associate
Get started today
Ultimate access to all questions.
A data engineer is tasked with creating a Delta table named customers that will store Personally Identifiable Information (PII). The initial SQL DDL is as follows:
CREATE TABLE customers(
ssn STRING,
name STRING,
age INT,
gender STRING
)
A senior data engineer suggests adding a description, "Table contains PII", to the table's metadata to inform users about the nature of the data it holds. Which of the following code snippets should the data engineer use to implement this suggestion?
A data engineer is tasked with creating a Delta table named customers that will store Personally Identifiable Information (PII). The initial SQL DDL is as follows:
CREATE TABLE customers(
ssn STRING,
name STRING,
age INT,
gender STRING
)
A senior data engineer suggests adding a description, "Table contains PII", to the table's metadata to inform users about the nature of the data it holds. Which of the following code snippets should the data engineer use to implement this suggestion?
Real Exam
Comments
Loading comments...