Invalid Object Name sql

前端 未结 9 1604
面向向阳花
面向向阳花 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:28

    Make sure you're using the correct database. It may be defaulting to the "Master" database, and it doesn't look like you have the full schema for the referenced table.

    Ex: [DatabaseName].[Schema].[TableName] or [Database1].[smmdmm].[aid_data]

    Hope this helps.

提交回复
热议问题