在我看来,所有的列名红色下划线的SSMS(All column names in my view a

2019-08-17 09:09发布

我创建的视图View_DefectDaysOutstanding3。 当我选择看到的数据,它给出的数据,但为什么在select语句的所有字段以红色下划线的错误?

SELECT TOP 1000 [ID]
          ,[Severity]
          ,[AvgDaysOutstanding]
          ,[ReportMonth]
          ,[ReportYearMonth]
          ,[#OfBugs]
          ,[projid]
          ,[folderid]
      FROM [SoftwarePlanner].[dbo].[View_DefectDaysOutstanding3]
      order by ReportYearMonth

Answer 1:

你有你的刷新缓存智能感知?

键盘快捷键:Ctrl + Shift键 + R

或者,使用菜单: Edit - > IntelliSense - > Refresh Local Cache



Answer 2:

去编辑>智能感知>刷新本地缓存,

您需要刷新缓存创建新表/列添加/新观点等之后



文章来源: All column names in my view are underlined in red in SSMS