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
There might be 2 reasons for it.
Table name is wrong
Sol: Verify the table name and try to execute
Database name and schema name are not mentioned with the table name in query
Sol: Mention the database and schema name in SQL query.
For ex:
select * from MESQLDBM.dbo.Alert ([DatabaseName].[Schema].[TableName])