Invalid Object Name sql

前端 未结 9 1584
面向向阳花
面向向阳花 2020-12-15 22:55

I keep getting an invalid object name error on my sql code. (member_number, subscriber_policy_number) is underlined with the error message.

The code it

9条回答
  •  感动是毒
    2020-12-15 23:24

    I faced case sensitivity problem. Below was my erroneous query

    SELECT * FROM [bccci$Biochemical View] AS ibv 
    

    here "V"- 1st character of last part of table name is Upper case but in actual table name it was lower case. that is [bccci$Biochemical view]. So my correct code was

    SELECT * FROM [bccci$Biochemical view] AS ibv 
    

提交回复
热议问题