My table alias is not working on SQL server 2012. I have enabled Intellisense. Still it's not working.
select * from department a
-- Alias a
should taken all columns automatically when I write:
select *
from department a
where a.departmentid = ..
departmentid
column have to come automatically when I write a
.
Is there any setting I need to change in my server?