I need to define a table name as a variable and use that variable in a query.
I need to DECLARE @variable VARCHAR(30) = 'Paris' and then thanks to a SELECT * INTO create a table named tbl_Paris
something like SELECT * INTO + tbl_@variable
Is there a way to do that?