Ultimate access to all questions.
The data engineering team has a large Delta table named ‘users’. A recent query on the table returned some entries with negative values in the ‘age’ column. To enforce data quality, a junior data engineer attempted to add a CHECK constraint with the command: ALTER TABLE users ADD CONSTRAINT valid_age CHECK (age > 0);
. However, the command failed. Which statement best explains the cause of this failure?