A data engineer wants to create a new table containing the names of customers that live in France. They have written the following command: ```sql CREATE TABLE customersInFrance AS SELECT id, firstName, lastName, FROM customerLocations WHERE country = 'FRANCE'; ``` A senior data engineer mentions that it is organization policy to include a table property indicating that the new table includes personally identifiable information (PII). Which of the following lines of code fills in the above blank to successfully complete the task? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz