For example:
Create view View_AutoUpdate as
(
select a.*,b.[name] from User as a,Company as b where a.CompanyID=b.CompanyID
)
Done,but when i do it follow:
Alter table User add UserAddress nvarchar(50) null
Done.
finally,i type "select * from View_AutoUpdate ",the list column is not right.
thanks