It shows an error ,when try to run this
declare @tableName VARCHAR(250)
select @tableName='['+SCHEMA_NAME(schema_id)+'].['+name+']'
FROM sys.tables
WHERE '['+SCHEMA_NAME(schema_id)+'].['+name+']'='[Management].[Table_1]'
print @tableName
TRUNCATE table @tableName
Incorrect syntax near '@tableName'.