当前位置: 代码迷 >> Oracle开发 >> 写了N年SQL,被这个SQL难住了解决思路
  详细解决方案

写了N年SQL,被这个SQL难住了解决思路

热度:82   发布时间:2016-04-24 07:25:25.0
写了N年SQL,被这个SQL难住了
table students结构如下:
sex qty
男 20
男 20
女 20
男 20
男 20

要用一个select语句(不要有子查询),不能用goup by
得到总人数(40)

说明:students只有2种数据:男 20;女 20,再没有其他数据,只是有重复

------解决方案--------------------
up
探讨

SQL code
with students as
(
select '男' sex ,20 qty from dual
union all
select '男' sex ,20 qty from dual
union all
select '女' sex ,20 qty from dual
union all
sel……
  相关解决方案