I have a table called 'employees', with column names 'Employee_Number', 'Location', 'Salary' and 'Birthday'.
On the left of the Management Studio page, under the Object Explorer, there are the options to view the Columns, Keys, Constraints, etc. of my 'employees' table.
Each option expands when double-clicked, except the 'Columns' tab. Apparently, the table does not have any columns in it. I have checked to see if my table is still there, using SELECT * FROM employees;
. From which, all columns are shown.
I wanted to access one of these columns manually, so I can rename it, without using code. Why is the Columns section of the Object Explorer returning no values?
All keys and constraints I had made on the table are still there on Object Explorer.