条件在SQL查询中的条款

前端之家收集整理的这篇文章主要介绍了条件在SQL查询中的条款前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经开发了用于生成报告的MVC应用程序.我提供了许多搜索选项,如下所示
Customer id
Customer name
Customer E-mail
State
Country

用户1:

如果某些用户只能给出一些值的输入

Customer id = 1
Customer name = A

默认情况下,其他参数将作为空值传递给存储过程.

Customer E-mail
State
Country

用户2:

如果某些用户只能输入一些值,例如

客户E-mail=xtz@gmail.com

默认情况下,其他参数将作为空值传递给存储过程.

Customer id
Customer name
State
Country

如何在存储过程中的SQL查询中使用where子句.我们可以像下面这样做吗

string qry = select * from table_name where status != d

if (@customerID!=null)
    qry = qry + "and customer_id=@customerID"
if (@customerName!=null)
    qry = qry + "and customer_name=@customerName"

请让我最好的方法.

谢谢,
Velu

解决方法

你想知道的关于这个话题的一切,以及更多: Dynamic Search Conditions in T-SQL
原文链接:https://www.f2er.com/mssql/75449.html

猜你在找的MsSQL相关文章