Within MS SQL Server, I am looking to create a new table from an existing table. My existing table is dbo.AmtrakROAS and I would like my new table to be called WeeklyROAS. I suspect the issue is related to a quirk of MS SQL Server and how you generate new tables within it.
Here is my existing code:
Create Table WeeklyROAS
Select * into AmtrakROAS
From WeeklyROAS
Picture of the code and ERROR