Hunter
October 14, 2009, 12:10am
1
I noticed that if I have a query like this is SQL Nav 6.2 the code completion doesn’t work in the Select part of the query if it’s something like this:
select sum(e.sal)
from emp e
But it does work for:
select e.sal
from emp e
Apologies if this has been noted previously.
-Hunter
Gwen
October 14, 2009, 12:22am
2
Hi Tim,
It works ok for me. Was it an alias of a table or a synonym of a table? It might make a difference.
Gwen
Hunter
October 14, 2009, 12:32am
3
I tried with both a synonym and table and I get the same result where it doesn’t work.
I did discover if I close the parenthesis first and then backspace it works.
So this is okay:
select sum(e. )
from emp e
Not so much okay:
select sum(e.
from emp e
Can you try it the second way without closing the parens to see if you can replicate?
Gwen
October 14, 2009, 7:03pm
4
Yup, I can replicate this case and it’s a known issue. Please use the closing bracket as a work-around for now.
Thanks,
Gwen