程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 為什麼會有兩個日期了-oracle 表合並 後有兩個關鍵字

為什麼會有兩個日期了-oracle 表合並 後有兩個關鍵字

編輯:編程綜合問答
oracle 表合並 後有兩個關鍵字

select * from
((select t_date,count(*) 勝 from t group by t_status,t_date having T_STATUS='勝') a
inner join (select t_date,count(*) 負 from t group by t_status,t_date having T_STATUS='負') b
on a.t_date=b.t_date) ;
合並後成
1 2015-5-9 2 2015-5-9 2
2 2015-5-10 1 2015-5-10 3

最佳回答:


select a.t_date,a.勝,b.負 from ((select t_date,count(*) 勝 from t group by t_status,t_date having T_STATUS='勝') a
inner join (select t_date,count(*) 負 from t group by t_status,t_date having T_STATUS='負') b
on a.t_date=b.t_date) ;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved