select
时间,
SUM
(
case
when
win=
‘胜‘
then
1
else
0
end
) 胜,
SUM
(
case
when
win=
‘负‘
then
1
else
0
end
) 负
from
tb
group
by
时间
case相当于if.....else 条件语句
Posted Im X
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysq——case函数相关的知识,希望对你有一定的参考价值。
select
时间,
SUM
(
case
when
win=
‘胜‘
then
1
else
0
end
) 胜,
SUM
(
case
when
win=
‘负‘
then
1
else
0
end
) 负
from
tb
group
by
时间
case相当于if.....else 条件语句
以上是关于Mysq——case函数的主要内容,如果未能解决你的问题,请参考以下文章
在创建VSCode片段时,如何将变量转换为title-case(如TitleCase)?