2012-09-03 3 views

답변

0

이 (테이블의 실제 이름으로 t1 대체) 시도 :

select 
distinct(ServedIMSI) ServedIMSI, 
(select Servicekey from t1 a 
    where a.ServedIMSI = t.ServedIMSI and rownum=1) Servicekey 
from t1 t 

당신은 FROM 실행 예를 here

+1

내가 sollution SELECT ServiceKey, 분 (ServedIMSI를) 발견을 찾을 수 있습니다 <> GROUP BY ServiceKey 죄송합니다. 감사합니다. – mortos

관련 문제