Reputation: 153
Added a new column to the existing table. Column is also visible after firing select query.
But while inserting record into that table. The new added column is not visible in
INSERT INTO template(ID,name,validity,status)
VALUES (1,'sudhakar','2014-04-05',available)
In the above query Status is the newly added column which is not visible inside the insert query
Upvotes: 2
Views: 1619
Reputation: 1285
If you change the structure of an object, you have to refresh IntelliSense
Edit -> IntelliSense -> Refresh local Cache
or
ctrl + shift + R
Upvotes: 8