CodeGym/Help with Java Tasks/Not validatingSebastian111Level 39/13/25131views1commentNot validating Question about the task task0149 SQL & Hibernate, Level 1, Lesson 4 Resolved For some reason the task is not validating. Please check...ConditionsClass treeSelect all columns (use *) from the parts table that have a description field value that is not NULL or an identifier field value that is not NULLRequirements:The request must be implemented according to the condition.query.sql init_data.sql 2 query.sql init_data.sql -- Write your code here: SELECT * FROM parts WHERE description IS NOT NULL OR identifier IS NOT NULL ; 0 Comments (1)PopularNewOld You must be signed in to leave a comment Sebastian111 Level 3 , Germany14 September 2025, 06:43solutionThe task condition needs to be corrected. The task passes when you write the query for the following condition: ...description field value is not NULL or an identifier field value that is NULL. +3