In SQL Server Management Studio (SSMS) is there an option to enable intellisense auto-completion for JOINs?
For example, if I type:
SELECT * FROM Employee INNER JOIN _
at this point I would like intellisense to give me the tables related to Employee, and when I pick one to fill in the appropriate join condition, based on the foreign key relationships.
LinqPad does this for LINQ queries, which is great. I would like the same in SSMS. I am using SqlServer 2012.