2010-11-24 17 views

答えて

4

あなたの副選択はエイリアスする必要があります

select * 
from other AS o 
inner join (select Count(*), F1,F2,F3 
      from Table 
      group by F1,F2,F3) AS x on F1 = o.OtherF 
4
あなたはサブクエリをエイリアスする必要が

select * from other table inner join (select Count(*), F1,F2,F3 from Table group by F1,F2,F3) s on s.F1 = OtherF 
関連する問題