To improve the readability, avoid using empty strings to represent NULL.

Noncompliant Code Example

var := '';

Compliant Solution

var := null;