我使用这个 SQL 来获取一些索引:
select follow
from unigram
where alternativeSpelling like 'test'
order by freq desc
limit 10;
然后,我使用此 SQL 将它们一一转换为单词:
select word
from wordIdxTranslate
where word_idx = <one of the indexes from above>
如何将这些组合到一个查询中,同时保留第一个查询(“freq”)的排名顺序?