code assistant from wrong table

matejj

Member²
In program window i'm writing many selects:
select * from tableX a where a.xxx = 1
select * from tableY a where a.
after I press F6 after second a. it shows coumns of the first tableX.
 
You need to terminate the first statement with a semi-colon, otherwise the script cannot be parsed correctly by the Code Assistant:

select * from tableX a where a.xxx = 1;
select * from tableY a where a.
 
Back
Top