VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > SQL教程 >
  • 几道常见的SQL面试题,看你能答对几道?(2)

--方法一 select id,Count*) from tb group by id having count(*)>1; --方法二 select * from (select count(ID) as count from table group by ID)T where T.count>1

 

 

19

--连接查询
SELECT b.YEAR, SUM(a.salary) salary
FROM hello a, hello b
WHERE a.YEAR <= b.YEAR GROUP BY b.YEAR

--子查询
select year ,
(select sum(salary)
from hello as B
where B.year<=A.year )
from hello as A


相关教程
关于我们--广告服务--免责声明--本站帮助-友情链接--版权声明--联系我们       黑ICP备07002182号