What is dynamic SQL?

Dynamic SQL is merely where the query has been built on the fly – with some vendors, you can build up the text of the dynamic query within one stored procedure, and then execute the generated SQL. In other cases, the term merely refers to a decision made by code on the client (this is at least vendor neutral)

Leave a Comment