DazzaL
Member
A while back i read a post on ANSI support, at which point the admin says the beautifier would work with ansi from release 6.0 onwards but i still see issues (from my point of view) with it:
formatted with 6.0.1 - no ansi:
and with ansi equivalent:
why does the "where" end up on the same line as the "from"? and that "and" is wierd in its location.
maybe i just havent configured the beautifier correctly?
Regards,
--
Daz.
formatted with 6.0.1 - no ansi:
Code:
select *
from a, b, c
where a.id = b.foreign_id
and a.c_id = c.id
and a.criteria = somevalue
Code:
select *
from a join b on a.id = b.foreign_id join c on a.c_id = c.id where
a.criteria = somevalue
and b.criteria = somevalue2
maybe i just havent configured the beautifier correctly?
Regards,
--
Daz.