資料庫面試題——比賽資料查詢,試題資料查詢

來源:互聯網
上載者:User

資料庫面試題——比賽資料查詢,試題資料查詢

這次面試比較特殊,給了試卷,讓直介面頭回答,說實話,挺喜歡這樣的。

最後一道是資料庫題,表如下



自己YY了初始化語句

mysql> create table fmatch( mdate date, team varchar(20),res enum('WIN','LOSE'));mysql> insert into fmatch values('2010-10-19','76ers','WIN');Query OK, 1 row affected (0.07 sec)mysql> insert into fmatch values('2010-10-20','76ers','LOSE');Query OK, 1 row affected (0.07 sec)mysql> insert into fmatch values('2010-10-20','NET','WIN');Query OK, 1 row affected (0.04 sec)mysql> insert into fmatch values('2010-10-21','NET','WIN');Query OK, 1 row affected (0.04 sec)

下面是問題

1.      查出最早一天和最後一天的資料


思路:max、min

答案:

select * from fmatch where mdate in (select max(mdate) from fmatch) or  mdate in (select min(mdate) from fmatch);

這個問題比較簡單,不過如果大家有更好的答案,歡迎分享!


第二個問題,比較難。

2.      統計出各隊的勝負情況


當場沒想出來,跟面試官說要使用if語句,一條sql語句不能解決問題。哎,好蠢啊

回來上網查了一下,找到個很接近的答案

 select a.team ,a.win,b.lose from (select count(*) win, team from fmatch where res='WIN' group by team ) a left join  (select count(*) lose, team from fmatch where res='LOSE' group by team ) b on a.team=b.team;


不過還是有瑕疵,資料沒有時顯示的是NULL而不是0。

還有當時面試時面試官給的提示是行列變換,真的要用到行列變換嗎??

怎麼解決???求助各位網友啦!


===========續============

網友ArkStone給出第二題的答案,親測運行可用!

select team, count(res = 'WIN' or null) as win, count(res = 'LOSE' or null) as lose from fmatch group by team;

解釋一下:res = 'WIN' or null

如果res列的值為'WIN'那麼列值為1,否則為null

 

所以

對於76ers,win=count(1,null) = 1;lose=count(null,1)=1;

對於Net,win=count(1,1)=2; lose=count(null,null)=0;





著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.