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
According to the error you're receiving I assume that you're using MSSQL.
at the beginning of your queries try:
use [YOUR_DATABASE_NAME];
and then your query. It helped in my case.