Beautifier: having without group by

Kajman

Member²
A select with aggregate functions on all rows (group by not used) using having clause is not beautified correctly

Code:
select min(dummy)
from   dual
where  dummy like 'X%' having min(dummy) = max(dummy)
       and count(*) = count(dummy)

 
Back
Top