I want to change schema name of table Employees in Database. In the current table Employees database schema name is dbo I want to chan
Employees
dbo
Your Code is:
FROM dbo.Employees TO exe.Employees
I tried with this query.
ALTER SCHEMA exe TRANSFER dbo.Employees
Just write create schema exe and execute it
create schema exe