I keep getting an invalid object name error on my sql code. (member_number, subscriber_policy_number) is underlined with the error message.
member_number, subscriber_policy_number
The code it
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]
[DatabaseName].[Schema].[TableName]
[Database1].[smmdmm].[aid_data]
Hope this helps.