2
select *
from other table inner join
(
select Count(*),
F1,F2,F3
from Table
group by F1,F2,F3
) on F1 = OtherF
キーワード 'on'の近くに構文が正しくありません。ms SQLエラー:キーワード 'on'の近くの構文が正しくありません。
select *
from other table inner join
(
select Count(*),
F1,F2,F3
from Table
group by F1,F2,F3
) on F1 = OtherF
キーワード 'on'の近くに構文が正しくありません。ms SQLエラー:キーワード 'on'の近くの構文が正しくありません。
あなたの副選択はエイリアスする必要があります
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
select * from other table inner join (select Count(*), F1,F2,F3 from Table group by F1,F2,F3) s on s.F1 = OtherF