 |
 |
| SQL Server Tips: |
|
 |
 |

DATABASE MANAGEMENT AND ADMINISTRATION
Execute a statement against a dynamic list with this stored procedure
Hector Mejia 03.26.2002
Rating: --- (out of 5)




|
Need to execute a statement that performs an action validating against a list of values, but the list changes from one run to the other? Or perhaps the list is built dynamically within a stored procedure? Here's how:
DECLARE @ProdList as varchar(200)
SET @ProdList = "'PROD1','PROD2','PROD3'"
EXECUTE ('DELETE FROM tblProducts WHERE ProductID IN (' + @ProdList + ')')
Reader Feedback
Yuriy M. writes: Instead of using a dynamic SQL statement, you could apply a little trick with the CHARINDEX function, which is faster and more flexible. If you need to just execute a SELECT statement, you can use it inside a user defined function.
DECLARE @ProdList as varchar(200)
SET @ProdList = "'PROD1','PROD2','PROD3'"
DELETE FROM tblProducts
WHERE CHARINDEX(',' + ProductID + ',', ',' + CASE
WHEN @ProdList IS NOT NULL THEN @ProdList ELSE ProductID END + ',') <> 0
For More Information
- What do you think about this tip? E-mail the Editor at tdichiara@techtarget.com with your feedback.
- The Best SQL Server Web Links: tips, tutorials, scripts, and more.
- Have an SQL Server tip to offer your fellow DBA's and developers? The best tips submitted will receive a cool prize--submit your tip today!
- Ask your technical SQL Server questions--or help out your peers by answering them--in our live discussion forums.
- Check out our Ask the Experts feature: Our SQL, Database Design, Oracle, SQL Server, DB2, metadata, and data warehousing gurus are waiting to answer your toughest questions.
 |

|
Rate this Tip
|
To rate tips, you must be a member of SearchSQLServer.com. Register now
to start rating these tips. Log in if you are already a member.
|

Submit a Tip
|


');
// -->
DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.
|
 |
|
|
 |
|
 |
 |
 |
 |
| TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of . |
|
| |
All Rights Reserved, , TechTarget |
|
|
|
|
|