Complete the code to create a tag named 'Confidentiality'.
CREATE TAG [1];The tag name 'Confidentiality' is created using the CREATE TAG command.
Complete the code to assign the tag 'Confidentiality' with value 'High' to the table 'CustomerData'.
ALTER TABLE CustomerData SET TAG [1] = 'High';
The tag 'Confidentiality' is assigned to the table using SET TAG syntax.
Fix the error in the code to correctly assign the tag 'Confidentiality' with value 'Medium' to the column 'email' in table 'Users'.
ALTER TABLE Users ALTER COLUMN email SET TAG [1] = 'Medium';
The correct tag name 'Confidentiality' must be used to assign the tag to the column.
Fill both blanks to create a tag named 'RetentionPeriod' and assign it the value '7 years' on the table 'Orders'.
CREATE TAG [1]; ALTER TABLE Orders SET TAG [2] = '7 years';
The tag 'RetentionPeriod' is created and then assigned to the table 'Orders'. Both blanks require the same tag name.
Fill all three blanks to assign tags 'Confidentiality' with value 'Low', 'RetentionPeriod' with value '3 years', and 'Owner' with value 'FinanceTeam' to the table 'Invoices'.
ALTER TABLE Invoices SET TAG [1] = 'Low'; ALTER TABLE Invoices SET TAG [2] = '3 years'; ALTER TABLE Invoices SET TAG [3] = 'FinanceTeam';
Each tag is assigned with its correct value to the table 'Invoices'. The blanks correspond to the tag names in order.