Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently using sp_executesql to execute a T-SQL statement with a dynamic table name. However, it is really ugly to see something like:

set @sql = 'UPDATE '+Table_Name+' SET ... WHERE '+someVar+' = ... AND '+someVar2' = ...'
sp_executesql @sql

What I would rather like to have is a TABLE variable of which is a reference to a table, so I could do for example:

UPDATE TableRef SET ... WHERE ...

Because when I have really long T-SQL statements it gets really hard to read due to the format of it within a string.

Any suggestions would be helpful.

share|improve this question
btw, not SET sql = ... but SET @sql = ... – abatishchev Jun 18 '10 at 10:25
Yeah, thanks for the fixes. I kept getting blockquote when I pressed @. I wasn't aware that I could do it like this. Thanks. – Jón Trausti Jun 18 '10 at 10:27
ón: the product is called "SQL Server", not "MSSQL". – John Saunders Jun 22 '10 at 7:04

2 Answers

up vote 0 down vote accepted

Why don't you pass the parameters to sp_executeSQL instead?

http://msdn.microsoft.com/en-us/library/ms188001.aspx

I'd also have a read of this article too http://www.sommarskog.se/dynamic_sql.html

share|improve this answer
Seems reasonable, thank you for the useful websites. Since it is not possible to reference a table in a variable, I'll mark you as the answer to this question. Thank you. – Jón Trausti Jun 18 '10 at 10:56

You can't. If you want to use a dynamic table name in your SQL, you have to concatenate it into your string.

If you have a lot of references to the table name within your query, you can shorten it by aliasing the table name, and for all other instances, use the alias.

e.g.

SET @SQL = 'UPDATE t SET.... FROM ' + @TableName + ' t WHERE ....'

Just be very very careful when using dynamic SQL like this. Make sure you guard yourself against SQL injection.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.