Hi,
Suppose you have a table
tblPerson(Name varchar, Birtdate datetime, City varchar, id int)
When in the editor-window, I have the following sql
select *
from tblPerson
If I where to press tab when the cursor is with the '*'
then the query would be changed to
select name, birthdate, city, id
from tblPerson
see this link for an example with screenshots (it's about another product however)
http://blog.sqlauthority...ent-tool-for-sql-server/ Best regards
Ike