Change your last statement to this:
EXEC ('SELECT * FROM ' + @tablename)
This is how I do mine in a Stored Procedure. The first block will Declare the variable, and set the table name based on the current Year and Month Name, in this case TEST_2012OCTOBER. I then check if it exists in the DB already, remove if it does. Then the next block will use a SELECT INTO Statement to create the table and populate if with records from another table with parameters.
--DECLARE TABLE NAME VARIABLE DYNAMICALLY
DECLARE @table_name varchar(max)
SET @table_name = (select 'TEST_'+DATENAME(YEAR,GETDATE())+ UPPER(DATENAME(MONTH,GETDATE())))
--DROP THE TABLE IF IT ALREADY EXISTS
IF EXISTS(SELECT name FROM sysobjects WHERE name =@table_name AND xtype='U')
BEGIN
EXEC('drop table ' + @table_name)
END
--CREATES TABLE FROM DYNAMIC VARIABLE AND INSERTS ROWS FROM ANOTHER TABLE
EXEC ('SELECT * INTO ' +@table_name +' FROM dbo.MASTER WHERE STATUS_CD = ''A''')