程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> sql語句-字段是ip,ip1,iP2,ip1是null時ip2可能為null,也可能不是,如圖T1

sql語句-字段是ip,ip1,iP2,ip1是null時ip2可能為null,也可能不是,如圖T1

編輯:編程綜合問答
字段是ip,ip1,iP2,ip1是null時ip2可能為null,也可能不是,如圖T1

圖片說明
上圖T1

要有如下T2的效果
圖片說明
這是t2

select c.ip,ip1,ip2 from (
select a.ip as ip,a.ip1,b.ip2 from
(
select ip,ip1
from test4 where (ip2 is null and ip1 is not null) or(ip1 is not null and ip2 is not null)
) a
inner join
(select ip,ip2
from test4 where (ip1 is null and ip2 is not null) or(ip1 is not null and ip2 is not null)
) b on a.ip=b.ip) c

用這種方式可以達到效果,但是test4有幾十萬條數據會不會影響運行 效果,不知有沒有更好的方法????

最佳回答:


select ip,max(ip1),max(ip2) from t1 group by ip
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved