I have table_1 which has three columns: id, city, col1, and col2. And I have table_2 which has id, city, and col3, col4.
If I type "select col1, col2, col3, col4 from table_1 inner join table_2 on" the code complete pops up after the word "on" and gives me the ability to select either "table_1.id = table_2.id" or "table_1.city = table_2.city"
I would like the ability to select both statements with either a CTRL+Left Click or with check boxes. At the moment I have to pick one then type "and " wait for Code Complete to pop up again and then select the other.