RulesUnnecessaryNullStatementOn this pageUnnecessary NULL statementA NULL statement at the same level of other statements is useless, so should be removed. Noncompliant Code Example BEGIN var := 1; NULL; -- this NULL statement can be removedEND Compliant Solution BEGIN var := 1;END