1

我正在尝试构建一个 SQL 查询,该查询将计算每个 id 的总行数,以及按 id 分组的“FN%”和“W%”等级的数量。如果这些数字相等,则学生只有全部“FN%”或全部“W%”或两者的组合。

我需要一个只有“FN%”或“W%”统计数据的所有 id 的列表

例如 id # 683 & 657 会进入查询的结果集,但 603、781 和 694 不会

   id stat
  683 WF
  683 WF
  683 WF
  683 WF
  683 W
  683 W
  657 W
  657 W
  657 W
  657 W
  781 B+
  781 IP
  781 WP
  781 WP
  603 FN
  603 FN
  603 F
  603 FN
  603 FN
  694 B
  694 B+
  694 CI
  694 LAB
  694 WF
  694 WF

样本输出:

683
657

4

4 回答 4

3

这是我能想到的两种可能的解决方案。我不确定它们是否可以在 Informix 中工作:

SELECT  id
FROM    foo a
GROUP   BY id
HAVING  COUNT(*) = (
                SELECT  COUNT(*)
                FROM    foo b
                WHERE   a.id = b.id
                AND     (b.stat LIKE 'FN%' OR b.stat LIKE 'W%')
        );

如果HAVING子句中的子查询是禁止的,也许这会起作用:

SELECT  id
FROM    (
                SELECT  id, COUNT(*) stat_count
                FROM    foo
                WHERE   (stat LIKE 'FN%' OR stat LIKE 'W%')
                GROUP   BY id
        ) a
WHERE   stat_count = (SELECT COUNT(*) FROM foo b WHERE a.id = b.id);

更新:我刚刚在 Oracle 中尝试过这些,并且都可以工作。

于 2009-03-27T19:27:24.687 回答
0

其中 xxxx 是保存要处理的信息的临时表.....

select id, fullname, count(id) ttl 
from xxxx 
group by id, fullname 
into temp www with no log;


select id, fullname, count(id) ttl_f 
from xxxx 
where grd like 'FN%' or grd like 'W%' 
group by id, fullname 
into temp wwww with no log;


select www.id, www.fullname 
from www, wwww 
where www.id = wwww.id and www.ttl = wwww.ttl_f;
于 2009-03-27T18:39:24.817 回答
0

这个解释让我头疼。你在寻找这两组的结合吗?

  • 仅具有与“W%”匹配的统计信息的 ID
  • 仅具有与“FN%”匹配的统计信息的 ID

如果是这种情况,请将其设为一个 UNION 查询,其中每个集合都有一个子查询。

于 2009-03-27T18:39:56.313 回答
0

这是针对原始问题编写的:

select first 50
c.id,
(select trim(fullname) from entity where id = c.id) fullname,
count(*),
(select count(*) from courses where id = c.id and grd like 'FN%') FN,
(select count(*) from courses where id = c.id and grd like 'W%') W
from courses c
group by 1

出于某种原因,检索名称的子查询比使用连接要快得多。

编辑:以下将与 yukondude 的答案具有相同的行为,但在我们的 HPUX / Informix v10.00.HC5 机器上表现更好。

select c.id
from courses c
where not exists (
        select id
        from courses
        where (grd not like 'W%' and grd not like 'FN%')
        and id = c.id
)
group by 1
于 2009-03-27T19:19:36.810 回答