sqlserver - 如果变量满足要求,它将触发特定条件

sqlserver - if a variable meet a requirement , it will trigger specific conditions(sqlserver - 如果变量满足要求,它将触发特定条件)
本文介绍了sqlserver - 如果变量满足要求,它将触发特定条件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个 WHERE 子句,如果变量满足特定要求,它将触发特定条件

I'm trying to create a WHERE clause that would trigger specific conditions if a variable meet specific requirements

 WHERE 
     CASE 
      WHEN @Restriction = '1' THEN CFE_EDI.ETAT = 'ENV' OR CFE_EDI.ETAT = 'OUV'
      WHEN @Restriction = '0' THEN CFE_EDI.ETAT <> 'ENV' AND CFE_EDI.ETAT <> 'OUV'
      ELSE CFE_EDI.ETAT != '' AND CFE_EDI.CODE_INSEE IS NOT NULL 
     END

如您所见,它不起作用,因为 CASETHEN

As you can see, it won't work as CASE does not work well with having conditions after the THEN

我的一个朋友想出的一个解决方案是

One solution , a friend of mine came up with , would be that

WHERE (@restriction = 1 AND CFE_EDI.ETAT IN ('ENV', 'OUV'))
OR (@restriction = 0 AND CFE_EDI.ETAT.ETAT NOT IN ('ENV', 'OUV'))
OR (CFE.EDI.ETAT <> '' AND CFE_EDI.CODE_INSEE IS NOT NULL)       

然而,想想看,逻辑是如果@Restriction 等于1,那么把条件CFE_EDI.ETAT = 'ENV' OR CFE_EDI.ETAT = 'OUV' 和提出的解决方案由我的朋友不这样做.

Yet, thinking about it, the logic would be if @Restriction is equal to one then put the conditions CFE_EDI.ETAT = 'ENV' OR CFE_EDI.ETAT = 'OUV' and the solution proposed by my friend does not do that.

我知道可以在 Crystal Reports 中完成,但我不确定是否可以在 SQLServer 中完成.

I know it can be done in Crystal Reports but I'm unsure there is way of doing it in SQLServer.

谢谢

推荐答案

您的朋友解决方案已经适用于您的方案,但我不明白为什么您说它不起作用.你可以试试这个,但它类似于你朋友的解决方案.

Already your friend solution would work for your scenario but I don't why are you telling that it doesn't work. You can try this but it is similar to your friend solution.

WHERE ((@restriction = 1    AND (CFE_EDI.ETAT='ENV' OR CFE_EDI.ETAT='OUV'))
         OR (@restriction = 0   AND (CFE_EDI.ETAT<>'ENV' AND CFE_EDI.ETAT<>'OUV'))
         OR (CFE.EDI.ETAT <> '' AND CFE_EDI.CODE_INSEE IS NOT NULL))

这篇关于sqlserver - 如果变量满足要求,它将触发特定条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)