3

我有一张如下表:

我想计算 PageURL 列中说“ab”和“cd”的出现次数。

ID  User  Activity  PageURL  Date
 1  Me    act1      abcd     2013-01-01
 2  Me    act2      cdab     2013-01-02
 3  You   act2      xyza     2013-02-02
 4  Me    act3      xyab     2013-01-03

我想要 2 列...1 用于“ab”计数,1 用于“cd”计数。

在上面的示例中,“ab”的计数为 3,“cd”的计数为 2。

4

3 回答 3

7

就像是:

select 
   CountAB = sum(case when PageURL like '%ab%' then 1 else 0 end),
   CountCD = sum(case when PageURL like '%cd%' then 1 else 0 end)
from
  MyTable
where
   PageURL like '%ab%' or
   PageURL like '%cd%'

假设“ab”和“cd”每行只需要计算一次,这是可行的。此外,它可能不是很有效。

于 2013-02-12T00:27:50.660 回答
3
select
  (select count(*) as AB_Count from MyTable where PageURL like '%ab%') as AB_Count,
  (select count(*) as CD_Count from MyTable where PageURL like '%cd%') as CD_Count
于 2013-02-12T00:26:27.007 回答
0
SELECT total1, total2 
    FROM (SELECT count(*) as total1 FROM table WHERE PageUrl LIKE '%ab%') tmp1,
         (SELECT count(*) as total2 FROM table WHERE PageUrl LIKE '%cd%') tmp2
于 2013-02-12T00:37:04.590 回答