Beautifier - Conditions and ()

Niek

Member²
It seems that the beautifier is not handling () correctly within the where section:

Code:
SELECT id
FROM   customer
WHERE  last_name = 'Scott'
AND    (estimated_process_time IS NULL OR
      estimated_process_time >= normal_time);
 
Back
Top