SQL Server 2005 中的动态 SQL 查询编写
为 sql server 2005 编写动态参数化查询(传递的参数值可能为空)的最佳方法是什么?
What is the best way to write a dynamic parametrized query for sql server 2005 where passed parameter value may be null?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用:
SP_EXECUTESQL
Make use of :
SP_EXECUTESQL
然而
,这会降低性能。 我建议您在构建动态查询时,如果不需要,请不要向 where 子句添加参数。
How about something like
However, this will slow down performance. I would recomend that when you build your dynamic query, dont add parameters to the where clause, if it is not requied.
仅在可能的情况下:
编写包含所有参数的查询,但不要编写常规
写入
,或者
如果发生严重的性能问题,请考虑为每种情况编写查询。
仅当此查询每秒在小表上执行很多次时,才有理由完全编写它,使用 sp_prepare/sp_execute ,因此在这种情况下它将运行得最快。
Only if possible:
Write the query with all the parameters included, but instead of writing a regular
write
or
but if serious performance issues occur, consider writing the query for each single case.
ONLY if this query executes many many times per second on small tables, there is a reason to write it entirely, use sp_prepare/sp_execute for it, so it will run fastest in this case.