A Data Engineer defines the following masking policy: The policy must be applied to the full_name column in the customer table: Which query will apply the masking policy on the full_name column?
A.
ALTER TABLE customer MODIFY COLUMN full_nameSET MASKING POLICY name policy;
B.
ALTER TABLE customer MODIFY COLUMN full_nameADD MASKING POLICY name_policy;
C.
ALTER TABLE customer MODIFY COLUMNfirst_name SET MASKING POLICY name_policy,last_name SET MASKING POLICY name_policy;
D.
ALTER TABLE customer MODIFY COLUMNfirst_name ADD MASKING POLICY name_policy,last_name SET MASKING POLICY name_policy;
Answer:
b -
User Votes:
A 3 votes
50%
B
50%
C 1 votes
50%
D
50%
Discussions
0/ 1000
prateekgoyal1189
4 months, 2 weeks ago
should be A
Want to join our community?
Please log in or signup in order to use this feature
should be A