This is a dedicated watch page for a single video.
The data governance team has instituted a requirement that all tables containing Personal Identifiable Information (PII) must be clearly annotated. This includes adding column comments, table comments, and setting the custom table property "contains_pii" = true. The following SQL DDL statement is executed to create a new table: CREATE TABLE dev . pii_test ( id INT , name STRING COMMENT "PII" ) COMMENT "Contains PII" TBLPROPERTIES ( 'contains_pii' = True ); Which command allows manual confirmation that these three requirements have been met?