作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当条件本身是正在查询的表上的字段值时,如何在 SQL 中构建动态比较。
以下是我正在寻找的示例脚本。该脚本用于根据特定条件将学生分组。
DECLARE @GroupCondition TABLE
(
GroupID Int
,Condition NVARCHAR(MAX)
)
INSERT INTO @GroupCondition VALUES(1,'History < 80 OR Maths > 90 ')
INSERT INTO @GroupCondition VALUES(2,'Science < 90 OR Maths = 100 ')
SELECT
CASE WHEN G.Condition THEN 1 ELSE 0 END [GroupResult]
,S.Name,G.GroupID
FROM StudentMarks S , @GroupCondition G
最佳答案
注意:可能有更好的方法来完成您在此处尝试执行的操作,但这可以使用动态 sql:
--create table ##studentmarks (Name varchar(100),History int,Science int,Maths int);
--insert ##studentmarks select 'a',70,95,95;
--insert ##studentmarks select 'b',90,75,50;
--insert ##studentmarks select 'c',90,75,100;
declare @sql nvarchar(max)='';
DECLARE @GroupCondition TABLE
(
GroupID Int
,Condition NVARCHAR(MAX)
)
INSERT INTO @GroupCondition VALUES(1,'History < 80 OR Maths > 90 ')
INSERT INTO @GroupCondition VALUES(2,'Science < 90 OR Maths = 100 ');
select @sql=@sql+case when @sql!='' then ' union all ' else '' end+'select name,GroupID='+cast(GroupID as varchar)+',InGroup=case when '+condition+' then 1 else 0 end from ##studentmarks'
from @Groupcondition
exec(@sql);
关于sql - 查询感兴趣的值时如何在 SQL 中构建动态条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18721073/
我是一名优秀的程序员,十分优秀!