M matejj Member² Oct 24, 2018 #1 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.
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.
Marco Kalter Administrator Staff member Oct 24, 2018 #1 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.
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.