sql server 2005 - What is a dynamic SQL query, and when would I want to use one? -
What is a dynamic SQL query, and when do I want to use one? I'm using SQL Server 2005.
Here are some articles:
- < < Li>
Introduction to dynamic SQL :
dynamic SQL is a word used by SQL Code is generated which is programatically (part or completely) generated before your program is executed. As a result it is a very flexible and powerful tool. You can use dynamic SQL to complete tasks, such as which fields are filled on a form or add searches based on the tables being created with different names.
Comments
Post a Comment