I created a schema and a table under that schema.
I queried that table.
I wrote a stored procedure that queried that table with a basic select statement. The script failed on Azure Data Studio but SSMS had no issues. the same Azure SQL database was used . The error was that it could not find the table.
When I created the schema I used the same credentials and created it with "Create Schema test"; it ran successfully.
Why is my create SP script claiming the table does not exist with Azure Data Studio but running find with SSMS?
thanks.