A lot of times you wish that MS SQL intellisense will show you the columns of the table that you are making a query first before any other objects, specially if you can't remember the column name that you need to use.
So to force MS SQL to show the list of columns only, all you need to do is to type the table name and then followed by "." just like this:
SELECT * from Table1 where Table1.



