Skip to content
Advertisement

Dynamic SQL Select variable name

I have the following SQL statement, which works fine:

I now want to be able to pass in the table name as a variable, so I can use this as a function, so I tried this:

When I run this I get the following error:

If I remove the column name and change it to this, it works:

MY question is, how can I get the query to output the table name as a column?

Advertisement

Answer

QUOTENAME function has a second optional parameter to wrap the value with a different character, in your case you need a single quote to use the @TableName as varchar value in the first use and as a table name in the second one

It will create the following code

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement