I just upgraded to 4.1.1 and I was checking out the auto completion in the SQL browser. I have a request.
The hardest thing to remember when type sql is column names. How about supporting table aliases? If I define a table alias and then type the table alias in other parts of the SQL statement, pop-up the column names. For example, if I have the following sql statement:
select i.sku, i.name from item i where i.sku = ‘20000’;
When I type “i.”, pop-up a list of the columns. If I type “i.a”, narrow the list to column names that start with “a”.
Thanks