gpt4 book ai didi

sql - 查询感兴趣的值时如何在 SQL 中构建动态条件

转载 作者:行者123 更新时间:2023-12-04 04:42:14 25 4
gpt4 key购买 nike

当条件本身是正在查询的表上的字段值时,如何在 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

在上面的select查询中,我们可以得到G.Condition的实际要框出的条件吗??

最佳答案

注意:可能有更好的方法来完成您在此处尝试执行的操作,但这可以使用动态 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com