この SQL を使用して、いくつかのインデックスを取得します。
select follow
from unigram
where alternativeSpelling like 'test'
order by freq desc
limit 10;
次に、この SQL を使用して単語を 1 つずつ単語に変換します。
select word
from wordIdxTranslate
where word_idx = <one of the indexes from above>
最初のクエリ (「freq」) からのランキング順を保持しながら、これらを 1 つのクエリに結合するにはどうすればよいですか?